zm
2020-05-18 a18bfacbf56b401f6e0fdae8710fbca4df8cff77
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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
package cn.autoform.db.entity;
 
public class TenantEntity {
    private String tenantID = "";
    private int pageNum=0;
    private String businessCategoryID="";
    private String selectFor="";
    private int pageSize = 0;
    private String selectName;
    
    public String getSelectName() {
        return selectName;
    }
    public void setSelectName(String selectName) {
        this.selectName = selectName;
    }
 
    public String getTenantID() {
        return tenantID;
    }
 
    public void setTenantID(String tenantID) {
        this.tenantID = tenantID;
    }
    public int getPageNum() {
        return pageNum;
    }
    public void setPageNum(int pageNum) {
        this.pageNum = pageNum;
    }
    public String getBusinessCategoryID() {
        return businessCategoryID;
    }
    public String getSelectFor() {
        return selectFor;
    }
    public void setBusinessCategoryID(String businessCategoryID) {
        this.businessCategoryID = businessCategoryID;
    }
    public void setSelectFor(String selectFor) {
        this.selectFor = selectFor;
    }
    public int getPageSize() {
        return pageSize;
    }
    public void setPageSize(int pageSize) {
        this.pageSize = pageSize;
    }
    @Override
    public String toString() {
        
        // TODO Auto-generated method stub
        return "参数"+this.getTenantID()+"+++"+this.getBusinessCategoryID()+"++++"
                +this.getSelectFor()+"+++++++"+this.getPageNum()+"++++"+this.getPageSize();
    }
    
}