zm
2020-05-18 a18bfacbf56b401f6e0fdae8710fbca4df8cff77
commit | author | age
a18bfa 1 package cn.autoform.web.client.bean;
Z 2
3 import java.util.List;
4
5 import lombok.Data;
6
7 /**
8  * 公司(返回字段包含业务系统)
9  * @author liush
10  *
11  */
12
13 public class Company {
14     
15     /**
16      * 公司id
17      */
18     private Integer id;
19     
20     /**
21      * 公司名称
22      */
23     private String name;
24     
25     /**
26      * 对应租户id
27      */
28     private Integer tenantId;
29     
30     /**
31      * 组织机构code
32      */
33     private String orgCode;
34     
35     /**
36      * 职位名称
37      */
38     private String positionName;
39     
40     /**
41      * 注册地址
42      */
43     private String registAddress;
44     
45     /**
46      * 
47      */
48     private Integer auditState;
49     
50     /**
51      * 状态
52      */
53     private Integer state;
54     
55     private String busLicenseUrl;
56     
57     private String bankAccountLicense;
58     
59     private String authorizationFile;
60     
61     /**
62      * 公司业务集合
63      */
64     private List<SystemManager> data;
65     
66     /**
67      * 新加公司code
68      */
69     private String hotInfoCompanyId;
70
71     public Integer getId() {
72         return id;
73     }
74
75     public void setId(Integer id) {
76         this.id = id;
77     }
78
79     public String getName() {
80         return name;
81     }
82
83     public void setName(String name) {
84         this.name = name;
85     }
86
87     public Integer getTenantId() {
88         return tenantId;
89     }
90
91     public void setTenantId(Integer tenantId) {
92         this.tenantId = tenantId;
93     }
94
95     public String getOrgCode() {
96         return orgCode;
97     }
98
99     public void setOrgCode(String orgCode) {
100         this.orgCode = orgCode;
101     }
102
103     public String getPositionName() {
104         return positionName;
105     }
106
107     public void setPositionName(String positionName) {
108         this.positionName = positionName;
109     }
110
111     public String getRegistAddress() {
112         return registAddress;
113     }
114
115     public void setRegistAddress(String registAddress) {
116         this.registAddress = registAddress;
117     }
118
119     public Integer getAuditState() {
120         return auditState;
121     }
122
123     public void setAuditState(Integer auditState) {
124         this.auditState = auditState;
125     }
126
127     public Integer getState() {
128         return state;
129     }
130
131     public void setState(Integer state) {
132         this.state = state;
133     }
134
135     public String getBusLicenseUrl() {
136         return busLicenseUrl;
137     }
138
139     public void setBusLicenseUrl(String busLicenseUrl) {
140         this.busLicenseUrl = busLicenseUrl;
141     }
142
143     public String getBankAccountLicense() {
144         return bankAccountLicense;
145     }
146
147     public void setBankAccountLicense(String bankAccountLicense) {
148         this.bankAccountLicense = bankAccountLicense;
149     }
150
151     public String getAuthorizationFile() {
152         return authorizationFile;
153     }
154
155     public void setAuthorizationFile(String authorizationFile) {
156         this.authorizationFile = authorizationFile;
157     }
158
159     public List<SystemManager> getData() {
160         return data;
161     }
162
163     public void setData(List<SystemManager> data) {
164         this.data = data;
165     }
166
167     public String getHotInfoCompanyId() {
168         return hotInfoCompanyId;
169     }
170
171     public void setHotInfoCompanyId(String hotInfoCompanyId) {
172         this.hotInfoCompanyId = hotInfoCompanyId;
173     }
174     
175    
176     
177 }