应用中心,增加排除创建人
This commit is contained in:
parent
30d6574067
commit
d22ab8874a
@ -23,4 +23,7 @@ public class ApplicationPageReqVO extends PageParam {
|
||||
|
||||
@Schema(description = "创建人", example = "1")
|
||||
private String creator;
|
||||
|
||||
@Schema(description = "排序创建人", example = "1")
|
||||
private String exclude;
|
||||
}
|
||||
|
@ -22,6 +22,7 @@ public interface ApplicationMapper extends BaseMapperX<ApplicationDO> {
|
||||
.likeIfPresent(ApplicationDO::getAppName, reqVO.getAppName())
|
||||
.eqIfPresent(ApplicationDO::getAppCategory, reqVO.getAppCategory())
|
||||
.eqIfPresent(ApplicationDO::getCreator, reqVO.getCreator())
|
||||
.neIfPresent(ApplicationDO::getCreator, reqVO.getExclude())
|
||||
.eq(ApplicationDO::getDeleted,false)
|
||||
.orderByDesc(ApplicationDO::getId));
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user