修改 baseMapper selectCount int -> long

Mybatis Plus 在3.4 版本之后将 selectCount 从Integer 改为Long
This commit is contained in:
leosanqing 2022-02-18 11:27:42 +08:00
parent 167baed952
commit 72d18b056b
13 changed files with 20 additions and 15 deletions

View File

@ -43,12 +43,12 @@ public interface BaseMapperX<T> extends BaseMapper<T> {
return selectOne(new LambdaQueryWrapper<T>().eq(field1, value1).eq(field2, value2)); return selectOne(new LambdaQueryWrapper<T>().eq(field1, value1).eq(field2, value2));
} }
default Integer selectCount(String field, Object value) { default Long selectCount(String field, Object value) {
return selectCount(new QueryWrapper<T>().eq(field, value)).intValue(); return selectCount(new QueryWrapper<T>().eq(field, value));
} }
default Integer selectCount(SFunction<T, ?> field, Object value) { default Long selectCount(SFunction<T, ?> field, Object value) {
return selectCount(new LambdaQueryWrapper<T>().eq(field, value)).intValue(); return selectCount(new LambdaQueryWrapper<T>().eq(field, value));
} }
default List<T> selectList() { default List<T> selectList() {
@ -76,4 +76,8 @@ public interface BaseMapperX<T> extends BaseMapper<T> {
entities.forEach(this::insert); entities.forEach(this::insert);
} }
default Boolean exists(SFunction<T, ?> field, Object value) {
return selectCount(field, value) > 0;
}
} }

View File

@ -24,7 +24,7 @@ public interface FileMapper extends BaseMapperX<FileDO> {
.orderByDesc("create_time")); .orderByDesc("create_time"));
} }
default Integer selectCountById(String id) { default Long selectCountById(String id) {
return selectCount(FileDO::getId, id); return selectCount(FileDO::getId, id);
} }

View File

@ -25,7 +25,7 @@ public interface DeptMapper extends BaseMapperX<DeptDO> {
.eq(DeptDO::getName, name)); .eq(DeptDO::getName, name));
} }
default Integer selectCountByParentId(Long parentId) { default Long selectCountByParentId(Long parentId) {
return selectCount(DeptDO::getParentId, parentId); return selectCount(DeptDO::getParentId, parentId);
} }

View File

@ -28,7 +28,7 @@ public interface DictDataMapper extends BaseMapperX<DictDataDO> {
.in(DictDataDO::getValue, values)); .in(DictDataDO::getValue, values));
} }
default int selectCountByDictType(String dictType) { default long selectCountByDictType(String dictType) {
return selectCount(DictDataDO::getDictType, dictType); return selectCount(DictDataDO::getDictType, dictType);
} }

View File

@ -20,7 +20,7 @@ public interface MenuMapper extends BaseMapperX<MenuDO> {
.eq(MenuDO::getName, name)); .eq(MenuDO::getName, name));
} }
default Integer selectCountByParentId(Long parentId) { default Long selectCountByParentId(Long parentId) {
return selectCount(MenuDO::getParentId, parentId); return selectCount(MenuDO::getParentId, parentId);
} }

View File

@ -48,7 +48,7 @@ public interface SmsTemplateMapper extends BaseMapperX<SmsTemplateDO> {
.orderByDesc(SmsTemplateDO::getId)); .orderByDesc(SmsTemplateDO::getId));
} }
default Integer selectCountByChannelId(Long channelId) { default Long selectCountByChannelId(Long channelId) {
return selectCount(SmsTemplateDO::getChannelId, channelId); return selectCount(SmsTemplateDO::getChannelId, channelId);
} }

View File

@ -82,7 +82,7 @@ public interface DictDataService extends DictDataFrameworkService {
* @param dictType 字典类型 * @param dictType 字典类型
* @return 数据数量 * @return 数据数量
*/ */
int countByDictType(String dictType); long countByDictType(String dictType);
/** /**
* 校验字典数据们是否有效如下情况视为无效 * 校验字典数据们是否有效如下情况视为无效

View File

@ -209,7 +209,7 @@ public class DictDataServiceImpl implements DictDataService {
} }
@Override @Override
public int countByDictType(String dictType) { public long countByDictType(String dictType) {
return dictDataMapper.selectCountByDictType(dictType); return dictDataMapper.selectCountByDictType(dictType);
} }

View File

@ -166,6 +166,7 @@ public class MenuServiceImpl implements MenuService {
* @param menuId 菜单编号 * @param menuId 菜单编号
*/ */
@Transactional(rollbackFor = Exception.class) @Transactional(rollbackFor = Exception.class)
@Override
public void deleteMenu(Long menuId) { public void deleteMenu(Long menuId) {
// 校验是否还有子菜单 // 校验是否还有子菜单
if (menuMapper.selectCountByParentId(menuId) > 0) { if (menuMapper.selectCountByParentId(menuId) > 0) {

View File

@ -110,6 +110,6 @@ public interface SmsTemplateService {
* @param channelId 短信渠道编号 * @param channelId 短信渠道编号
* @return 数量 * @return 数量
*/ */
Integer countByChannelId(Long channelId); Long countByChannelId(Long channelId);
} }

View File

@ -220,7 +220,7 @@ public class SmsTemplateServiceImpl implements SmsTemplateService {
} }
@Override @Override
public Integer countByChannelId(Long channelId) { public Long countByChannelId(Long channelId) {
return smsTemplateMapper.selectCountByChannelId(channelId); return smsTemplateMapper.selectCountByChannelId(channelId);
} }

View File

@ -177,7 +177,7 @@ public class DictTypeServiceTest extends BaseDbUnitTest {
// 准备参数 // 准备参数
Long id = dbDictType.getId(); Long id = dbDictType.getId();
// mock 方法 // mock 方法
when(dictDataService.countByDictType(eq(dbDictType.getType()))).thenReturn(1); when(dictDataService.countByDictType(eq(dbDictType.getType()))).thenReturn(1L);
// 调用, 并断言异常 // 调用, 并断言异常
assertServiceException(() -> dictTypeService.deleteDictType(id), DICT_TYPE_HAS_CHILDREN); assertServiceException(() -> dictTypeService.deleteDictType(id), DICT_TYPE_HAS_CHILDREN);

View File

@ -147,7 +147,7 @@ public class SmsChannelServiceTest extends BaseDbUnitTest {
// 准备参数 // 准备参数
Long id = dbSmsChannel.getId(); Long id = dbSmsChannel.getId();
// mock 方法 // mock 方法
when(smsTemplateService.countByChannelId(eq(id))).thenReturn(10); when(smsTemplateService.countByChannelId(eq(id))).thenReturn(10L);
// 调用, 并断言异常 // 调用, 并断言异常
assertServiceException(() -> smsChannelService.deleteSmsChannel(id), SMS_CHANNEL_HAS_CHILDREN); assertServiceException(() -> smsChannelService.deleteSmsChannel(id), SMS_CHANNEL_HAS_CHILDREN);