fix: 字典类型列表备注未显示问题修复
This commit is contained in:
@@ -59,7 +59,13 @@ public class SysDictTypeServiceImpl extends ServiceImpl<SysDictTypeMapper, SysDi
|
|||||||
.like(StrUtil.isNotBlank(keywords), SysDictType::getName, keywords)
|
.like(StrUtil.isNotBlank(keywords), SysDictType::getName, keywords)
|
||||||
.or()
|
.or()
|
||||||
.like(StrUtil.isNotBlank(keywords), SysDictType::getCode, keywords)
|
.like(StrUtil.isNotBlank(keywords), SysDictType::getCode, keywords)
|
||||||
.select(SysDictType::getId, SysDictType::getName, SysDictType::getCode, SysDictType::getStatus)
|
.select(
|
||||||
|
SysDictType::getId,
|
||||||
|
SysDictType::getName,
|
||||||
|
SysDictType::getCode,
|
||||||
|
SysDictType::getStatus,
|
||||||
|
SysDictType::getRemark
|
||||||
|
)
|
||||||
);
|
);
|
||||||
|
|
||||||
// 实体转换
|
// 实体转换
|
||||||
|
|||||||
Reference in New Issue
Block a user