提交 fc509837 编写于 作者: 公众号-芋道源码's avatar 公众号-芋道源码

Merge branch 'master' of https://github.com/YunaiV/ruoyi-vue-pro into feature/tenant_op

 Conflicts:
	yudao-framework/yudao-spring-boot-starter-mybatis/src/main/java/cn/iocoder/yudao/framework/mybatis/core/mapper/BaseMapperX.java
...@@ -47,12 +47,12 @@ public interface BaseMapperX<T> extends BaseMapper<T> { ...@@ -47,12 +47,12 @@ public interface BaseMapperX<T> extends BaseMapper<T> {
return selectCount(new QueryWrapper<T>()); return selectCount(new QueryWrapper<T>());
} }
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() {
......
...@@ -23,7 +23,7 @@ public interface FileMapper extends BaseMapperX<FileDO> { ...@@ -23,7 +23,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);
} }
......
...@@ -24,7 +24,7 @@ public interface DeptMapper extends BaseMapperX<DeptDO> { ...@@ -24,7 +24,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);
} }
......
...@@ -28,7 +28,7 @@ public interface DictDataMapper extends BaseMapperX<DictDataDO> { ...@@ -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);
} }
......
...@@ -19,7 +19,7 @@ public interface MenuMapper extends BaseMapperX<MenuDO> { ...@@ -19,7 +19,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);
} }
......
...@@ -46,7 +46,7 @@ public interface SmsTemplateMapper extends BaseMapperX<SmsTemplateDO> { ...@@ -46,7 +46,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);
} }
......
...@@ -82,7 +82,7 @@ public interface DictDataService extends DictDataFrameworkService { ...@@ -82,7 +82,7 @@ public interface DictDataService extends DictDataFrameworkService {
* @param dictType 字典类型 * @param dictType 字典类型
* @return 数据数量 * @return 数据数量
*/ */
int countByDictType(String dictType); long countByDictType(String dictType);
/** /**
* 校验字典数据们是否有效。如下情况,视为无效: * 校验字典数据们是否有效。如下情况,视为无效:
......
...@@ -208,7 +208,7 @@ public class DictDataServiceImpl implements DictDataService { ...@@ -208,7 +208,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);
} }
......
...@@ -167,6 +167,7 @@ public class MenuServiceImpl implements MenuService { ...@@ -167,6 +167,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) {
......
...@@ -110,6 +110,6 @@ public interface SmsTemplateService { ...@@ -110,6 +110,6 @@ public interface SmsTemplateService {
* @param channelId 短信渠道编号 * @param channelId 短信渠道编号
* @return 数量 * @return 数量
*/ */
Integer countByChannelId(Long channelId); Long countByChannelId(Long channelId);
} }
...@@ -216,7 +216,7 @@ public class SmsTemplateServiceImpl implements SmsTemplateService { ...@@ -216,7 +216,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);
} }
......
...@@ -177,7 +177,7 @@ public class DictTypeServiceTest extends BaseDbUnitTest { ...@@ -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);
......
...@@ -147,7 +147,7 @@ public class SmsChannelServiceTest extends BaseDbUnitTest { ...@@ -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);
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册