mirror of
https://gitee.com/best_handsome/mybatis-plus-join
synced 2025-07-11 00:02:22 +08:00
test
This commit is contained in:
parent
c37cb2695a
commit
8d4dbcaec8
@ -1,10 +1,9 @@
|
||||
package com.github.yulichang.test.join.mapper;
|
||||
|
||||
import com.github.yulichang.base.MPJBaseMapper;
|
||||
import com.github.yulichang.test.join.entity.AddressDO;
|
||||
import org.apache.ibatis.annotations.Mapper;
|
||||
|
||||
@Mapper
|
||||
@SuppressWarnings("unused")
|
||||
public interface AddressMapper extends MPJBaseMapper<AddressDO> {
|
||||
public interface AddressMapper extends MyBaseMapper<AddressDO> {
|
||||
}
|
||||
|
@ -1,10 +1,9 @@
|
||||
package com.github.yulichang.test.join.mapper;
|
||||
|
||||
import com.github.yulichang.base.MPJBaseMapper;
|
||||
import com.github.yulichang.test.join.entity.AreaDO;
|
||||
import org.apache.ibatis.annotations.Mapper;
|
||||
|
||||
@Mapper
|
||||
@SuppressWarnings("unused")
|
||||
public interface AreaMapper extends MPJBaseMapper<AreaDO> {
|
||||
public interface AreaMapper extends MyBaseMapper<AreaDO> {
|
||||
}
|
||||
|
@ -3,7 +3,11 @@ package com.github.yulichang.test.join.mapper;
|
||||
import com.github.yulichang.base.MPJBaseMapper;
|
||||
import org.apache.ibatis.annotations.Mapper;
|
||||
|
||||
import java.util.List;
|
||||
|
||||
@Mapper
|
||||
@SuppressWarnings("unused")
|
||||
public interface MYBaseMapper<T> extends MPJBaseMapper<T> {
|
||||
public interface MyBaseMapper<T> extends MPJBaseMapper<T> {
|
||||
|
||||
int insertBatchSomeColumn(List<T> entityList);
|
||||
}
|
@ -1,10 +1,9 @@
|
||||
package com.github.yulichang.test.join.mapper;
|
||||
|
||||
import com.github.yulichang.base.MPJBaseMapper;
|
||||
import com.github.yulichang.test.join.entity.UserDO;
|
||||
import org.apache.ibatis.annotations.Mapper;
|
||||
|
||||
@Mapper
|
||||
public interface UserMapper extends MPJBaseMapper<UserDO> {
|
||||
public interface UserMapper extends MyBaseMapper<UserDO> {
|
||||
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user