应用中心,增加创建人搜索
This commit is contained in:
parent
cd81efe140
commit
30d6574067
@ -20,4 +20,7 @@ public class ApplicationPageReqVO extends PageParam {
|
||||
|
||||
@Schema(description = "应用分类", example = "1")
|
||||
private Long appCategory;
|
||||
|
||||
@Schema(description = "创建人", example = "1")
|
||||
private String creator;
|
||||
}
|
||||
|
@ -21,6 +21,7 @@ public interface ApplicationMapper extends BaseMapperX<ApplicationDO> {
|
||||
return selectPage(reqVO, new LambdaQueryWrapperX<ApplicationDO>()
|
||||
.likeIfPresent(ApplicationDO::getAppName, reqVO.getAppName())
|
||||
.eqIfPresent(ApplicationDO::getAppCategory, reqVO.getAppCategory())
|
||||
.eqIfPresent(ApplicationDO::getCreator, reqVO.getCreator())
|
||||
.eq(ApplicationDO::getDeleted,false)
|
||||
.orderByDesc(ApplicationDO::getId));
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user