|
@@ -74,7 +74,8 @@ public class SysSystemServiceImpl extends ServiceImpl<SysSystemMapper, SysSystem
|
|
|
.ge(SysSystem::getCreateTime, select.getBeginCreateTime())
|
|
|
.le(SysSystem::getCreateTime, select.getEndCreateTime())
|
|
|
.like(SysSystem::getName)
|
|
|
- .build();
|
|
|
+ .build()
|
|
|
+ .eq(SysSystem::getStatus, true);
|
|
|
List<SysSystem> list = list(lambdaQueryWrapper);
|
|
|
return R.ok(copy(SysSystemDto.Vo.class, list));
|
|
|
}
|