Commit 5664822f by Jony.L

fix解决方案管理页面查询

parent d5bd9ccf
...@@ -21,6 +21,7 @@ public interface SolutionMapper extends BaseMapperX<SolutionDO> { ...@@ -21,6 +21,7 @@ public interface SolutionMapper extends BaseMapperX<SolutionDO> {
default PageResult<SolutionDO> selectPage(SolutionPageReqVO reqVO) { default PageResult<SolutionDO> selectPage(SolutionPageReqVO reqVO) {
return selectPage(reqVO, new LambdaQueryWrapperX<SolutionDO>() return selectPage(reqVO, new LambdaQueryWrapperX<SolutionDO>()
.eqIfPresent(SolutionDO::getCategory, reqVO.getCategory()) .eqIfPresent(SolutionDO::getCategory, reqVO.getCategory())
.likeIfPresent(SolutionDO::getTitle, reqVO.getTitle())
.eqIfPresent(SolutionDO::getIndustryCategory, reqVO.getIndustryCategory()) .eqIfPresent(SolutionDO::getIndustryCategory, reqVO.getIndustryCategory())
.eqIfPresent(SolutionDO::getTitleIndustry, reqVO.getTitleIndustry()) .eqIfPresent(SolutionDO::getTitleIndustry, reqVO.getTitleIndustry())
.eqIfPresent(SolutionDO::getTitleSolution, reqVO.getTitleSolution()) .eqIfPresent(SolutionDO::getTitleSolution, reqVO.getTitleSolution())
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or sign in to comment