This commit is contained in:
aikai 2024-06-13 15:29:52 +08:00
commit 7121d3bee2

View File

@ -23,7 +23,7 @@ public interface FactoryInfoMapper extends BaseMapperX<FactoryInfoDO> {
return selectPage(reqVO, new LambdaQueryWrapperX<FactoryInfoDO>()
.likeIfPresent(FactoryInfoDO::getName, reqVO.getName())
.likeIfPresent(FactoryInfoDO::getShortName, reqVO.getShortName())
.likeIfPresent(FactoryInfoDO::getType, reqVO.getType())
.eqIfPresent(FactoryInfoDO::getType, reqVO.getType())
.eqIfPresent(FactoryInfoDO::getStatus, reqVO.getStatus())
.betweenIfPresent(FactoryInfoDO::getCreateTime, reqVO.getCreateTime())
.orderByAsc(FactoryInfoDO::getType)