wangrenhuang
2022-10-12 400fc4f6b8eb33243b71f68feb2b4be615dac9ee
phis-feign/src/main/java/com/hz/his/dto/PageDto.java
@@ -16,6 +16,9 @@
    /**分类标识*/
    private String typeId;
    //appid
    private String appId;
    public Integer getPageNum() {
        if(this.pageNum == null || this.pageNum < 0){
@@ -38,8 +41,8 @@
    }
    public Integer getPageSize() {
        if(this.pageSize == null || this.pageSize < 0 || this.pageSize > 500){
            this.pageSize = 500;
        if(this.pageSize == null || this.pageSize < 0 || this.pageSize > 800){
            this.pageSize = 800;
        }
        return this.pageSize;
    }
@@ -80,4 +83,12 @@
    public void setTypeId(String typeId) {
        this.typeId = typeId;
    }
    public String getAppId() {
        return appId;
    }
    public void setAppId(String appId) {
        this.appId = appId;
    }
}