build(deps): 更新 MyBatis-Plus 依赖版本并集成 MPJ
- 将 MyBatis-Plus 核心库版本升级到 3.5.7- 集成 MyBatis-Plus Join (MPJ)插件,版本为 1.5.1 - 更新相关模块的 Mapper 和 Service 接口,使用 MPJ 提供的基类 - 调整部分依赖以支持 MPJ 功能dev
parent
f12976ea8f
commit
6bfef02b9b
@ -1,7 +1,7 @@
|
||||
package com.lyr.gather.local.mapper;
|
||||
|
||||
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
|
||||
import com.github.yulichang.base.MPJBaseMapper;
|
||||
import com.lyr.gather.local.domain.model.ConfigTask;
|
||||
|
||||
public interface ConfigTaskMapper extends BaseMapper<ConfigTask> {
|
||||
public interface ConfigTaskMapper extends MPJBaseMapper<ConfigTask> {
|
||||
}
|
||||
|
@ -1,9 +1,9 @@
|
||||
package com.lyr.gather.local.mapper;
|
||||
|
||||
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
|
||||
import com.github.yulichang.base.MPJBaseMapper;
|
||||
import com.lyr.gather.local.domain.model.ConfigDataSource;
|
||||
|
||||
public interface DataSourceConfigMapper extends BaseMapper<ConfigDataSource> {
|
||||
public interface DataSourceConfigMapper extends MPJBaseMapper<ConfigDataSource> {
|
||||
|
||||
|
||||
}
|
||||
|
Loading…
Reference in New Issue