|
|
@@ -69,7 +69,7 @@ public class SysDictRepository extends ServiceImpl<SysDictDao, SysDict> {
|
|
|
.eq(SysDict::getDelFlag, 0)
|
|
|
.eq(StringUtils.isNotBlank(type), SysDict::getType, type)
|
|
|
.eq(StringUtils.isNotBlank(parentId), SysDict::getParentId, parentId)
|
|
|
- .eq(StringUtils.isNotBlank(label), SysDict::getLabel, label)
|
|
|
+ .like(StringUtils.isNotBlank(label), SysDict::getLabel, label)
|
|
|
.orderByDesc(BaseModel::getCreateTime)
|
|
|
.orderByAsc(SysDict::getSort);
|
|
|
return page(page,wrapper);
|