| | |
| | | public interface HttpTagDao extends BaseMapperX<HttpTagEntity> { |
| | | default PageResult<HttpTagEntity> selectPage(HttpTagPageReqVO reqVO) { |
| | | return selectPage(reqVO, new LambdaQueryWrapperX<HttpTagEntity>() |
| | | .likeIfPresent(HttpTagEntity::getTagType, reqVO.getTagType()) |
| | | .likeIfPresent(HttpTagEntity::getTagCode, reqVO.getTagCode()) |
| | | .likeIfPresent(HttpTagEntity::getTagName, reqVO.getTagType()) |
| | | .likeIfPresent(HttpTagEntity::getTagName, reqVO.getTagCode()) |
| | | .likeIfPresent(HttpTagEntity::getTagName, reqVO.getTagName()) |
| | | .orderByDesc(HttpTagEntity::getCreateTime)); |
| | | } |