|
@@ -111,6 +111,7 @@ public class SysDictServiceImpl extends ServiceImpl<SysDictMapper, SysDict> impl
|
|
|
.ge(SysDict::getCreateTime, pageInfo.getBeginCreateTime())
|
|
|
.le(SysDict::getCreateTime, pageInfo.getEndCreateTime())
|
|
|
.like(SysDict::getMsg)
|
|
|
+ .like(SysDict::getValue)
|
|
|
.build()
|
|
|
.orderByAsc(!Emptys.check(page.getOrders()), SysDict::getOrders)
|
|
|
.and(StringUtils.isEmpty(pageInfo.getPaterCode()), sysDictLambdaQueryWrapper -> sysDictLambdaQueryWrapper
|
|
@@ -129,6 +130,8 @@ public class SysDictServiceImpl extends ServiceImpl<SysDictMapper, SysDict> impl
|
|
|
.in(SysDict::getId, selectList.getIds())
|
|
|
.in(SysDict::getCode, selectList.getCodes())
|
|
|
.in(SysDict::getPaterCode, selectList.getPaterCodes())
|
|
|
+ .like(SysDict::getMsg)
|
|
|
+ .like(SysDict::getValue)
|
|
|
.build()
|
|
|
.orderByAsc(SysDict::getOrders);
|
|
|
List<SysDict> list = list(lambdaQueryWrapper);
|