commit | author | age
|
a18bfa
|
1 |
package cn.autoform.db.entity; |
Z |
2 |
|
|
3 |
public class TenantEntity { |
|
4 |
private String tenantID = ""; |
|
5 |
private int pageNum=0; |
|
6 |
private String businessCategoryID=""; |
|
7 |
private String selectFor=""; |
|
8 |
private int pageSize = 0; |
|
9 |
private String selectName; |
|
10 |
|
|
11 |
public String getSelectName() { |
|
12 |
return selectName; |
|
13 |
} |
|
14 |
public void setSelectName(String selectName) { |
|
15 |
this.selectName = selectName; |
|
16 |
} |
|
17 |
|
|
18 |
public String getTenantID() { |
|
19 |
return tenantID; |
|
20 |
} |
|
21 |
|
|
22 |
public void setTenantID(String tenantID) { |
|
23 |
this.tenantID = tenantID; |
|
24 |
} |
|
25 |
public int getPageNum() { |
|
26 |
return pageNum; |
|
27 |
} |
|
28 |
public void setPageNum(int pageNum) { |
|
29 |
this.pageNum = pageNum; |
|
30 |
} |
|
31 |
public String getBusinessCategoryID() { |
|
32 |
return businessCategoryID; |
|
33 |
} |
|
34 |
public String getSelectFor() { |
|
35 |
return selectFor; |
|
36 |
} |
|
37 |
public void setBusinessCategoryID(String businessCategoryID) { |
|
38 |
this.businessCategoryID = businessCategoryID; |
|
39 |
} |
|
40 |
public void setSelectFor(String selectFor) { |
|
41 |
this.selectFor = selectFor; |
|
42 |
} |
|
43 |
public int getPageSize() { |
|
44 |
return pageSize; |
|
45 |
} |
|
46 |
public void setPageSize(int pageSize) { |
|
47 |
this.pageSize = pageSize; |
|
48 |
} |
|
49 |
@Override |
|
50 |
public String toString() { |
|
51 |
|
|
52 |
// TODO Auto-generated method stub |
|
53 |
return "参数"+this.getTenantID()+"+++"+this.getBusinessCategoryID()+"++++" |
|
54 |
+this.getSelectFor()+"+++++++"+this.getPageNum()+"++++"+this.getPageSize(); |
|
55 |
} |
|
56 |
|
|
57 |
} |