doum
7 小时以前 36f691267e45ca2861bed663fdcf5f2efcefdfce
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
package com.doumee.core.jiandaoyun.model.role;
 
 
import  com.doumee.core.jiandaoyun.model.base.PageBaseParam;
 
public class RoleListQueryParam extends PageBaseParam {
 
    private boolean has_internal;
    private boolean has_sync;
 
    public boolean isHas_internal() {
        return has_internal;
    }
 
    public void setHas_internal(boolean has_internal) {
        this.has_internal = has_internal;
    }
 
    public boolean isHas_sync() {
        return has_sync;
    }
 
    public void setHas_sync(boolean has_sync) {
        this.has_sync = has_sync;
    }
 
    public boolean isValid() {
        return super.isValid();
    }
 
    @Override
    public String toString() {
        return "RoleListQueryParam{" +
                "skip=" + super.getSkip() +
                ", limit=" + super.getLimit() +
                ", has_internal=" + has_internal +
                ", has_sync=" + has_sync +
                '}';
    }
}