|
@ -1,200 +1,208 @@
|
1
|
|
package com.ekexiu.console.system.po;
|
2
|
|
|
3
|
|
import com.ekexiu.console.basepo.CreateTimeSupported;
|
4
|
|
import com.ekexiu.console.basepo.DescpSupported;
|
5
|
|
import com.ekexiu.console.basepo.ModifyTimeSupported;
|
6
|
|
import org.jfw.apt.orm.annotation.entry.Column;
|
7
|
|
import org.jfw.apt.orm.annotation.entry.PrimaryKey;
|
8
|
|
import org.jfw.apt.orm.annotation.entry.Table;
|
9
|
|
import org.jfw.apt.orm.core.enums.DE;
|
10
|
|
|
11
|
|
@PrimaryKey("powerId")
|
12
|
|
@Table("view_my_customer")
|
13
|
|
public class MyCustomer implements CreateTimeSupported,ModifyTimeSupported,DescpSupported {
|
14
|
|
private String powerId;
|
15
|
|
private String id;
|
16
|
|
private String email;
|
17
|
|
private String phone;
|
18
|
|
private String subject;
|
19
|
|
private String industry;
|
20
|
|
private String department;
|
21
|
|
private String office;
|
22
|
|
private String orgId;
|
23
|
|
private String title;
|
24
|
|
private String name;
|
25
|
|
private String address;
|
26
|
|
private Integer authentication;
|
27
|
|
private String authType;
|
28
|
|
private Integer authStatus;
|
29
|
|
private Integer sortFirst;
|
30
|
|
private Integer authStatusExpert;
|
31
|
|
private String orgname;
|
32
|
|
private String descp;
|
33
|
|
private String createTime;
|
34
|
|
private String powType;
|
35
|
|
private String modifyTime;
|
36
|
|
private String cuserId;
|
37
|
|
//String_de大写的是允许为空,小写的是不允许为空
|
38
|
|
@Column(DE.string_de)
|
39
|
|
public String getPowerId() {
|
40
|
|
return powerId;
|
41
|
|
}
|
42
|
|
public void setPowerId(String powerId) {
|
43
|
|
this.powerId = powerId;
|
44
|
|
}
|
45
|
|
@Column(DE.String_de)
|
46
|
|
public String getId() {
|
47
|
|
return id;
|
48
|
|
}
|
49
|
|
public void setId(String id) {
|
50
|
|
this.id = id;
|
51
|
|
}
|
52
|
|
@Column(DE.String_de)
|
53
|
|
public String getEmail() {
|
54
|
|
return email;
|
55
|
|
}
|
56
|
|
|
57
|
|
public void setEmail(String email) {
|
58
|
|
this.email = email;
|
59
|
|
}
|
60
|
|
@Column(DE.String_de)
|
61
|
|
public String getSubject() {
|
62
|
|
return subject;
|
63
|
|
}
|
64
|
|
|
65
|
|
public void setSubject(String subject) {
|
66
|
|
this.subject = subject;
|
67
|
|
}
|
68
|
|
@Column(DE.String_de)
|
69
|
|
public String getPhone() {
|
70
|
|
return phone;
|
71
|
|
}
|
72
|
|
|
73
|
|
public void setPhone(String phone) {
|
74
|
|
this.phone = phone;
|
75
|
|
}
|
76
|
|
@Column(DE.String_de)
|
77
|
|
public String getIndustry() {
|
78
|
|
return industry;
|
79
|
|
}
|
80
|
|
public void setIndustry(String industry) {
|
81
|
|
this.industry = industry;
|
82
|
|
}
|
83
|
|
@Column(DE.String_de)
|
84
|
|
public String getDepartment() {
|
85
|
|
return department;
|
86
|
|
}
|
87
|
|
public void setDepartment(String department) {
|
88
|
|
this.department = department;
|
89
|
|
}
|
90
|
|
@Column(DE.String_de)
|
91
|
|
public String getOffice() {
|
92
|
|
return office;
|
93
|
|
}
|
94
|
|
public void setOffice(String office) {
|
95
|
|
this.office = office;
|
96
|
|
}
|
97
|
|
@Column(DE.String_de)
|
98
|
|
public String getOrgId() {
|
99
|
|
return orgId;
|
100
|
|
}
|
101
|
|
public void setOrgId(String orgId) {
|
102
|
|
this.orgId = orgId;
|
103
|
|
}
|
104
|
|
@Column(DE.String_de)
|
105
|
|
public String getTitle() {
|
106
|
|
return title;
|
107
|
|
}
|
108
|
|
public void setTitle(String title) {
|
109
|
|
this.title = title;
|
110
|
|
}
|
111
|
|
@Column(DE.String_de)
|
112
|
|
public String getName() {
|
113
|
|
return name;
|
114
|
|
}
|
115
|
|
public void setName(String name) {
|
116
|
|
this.name = name;
|
117
|
|
}
|
118
|
|
@Column(DE.String_de)
|
119
|
|
public String getAddress() {
|
120
|
|
return address;
|
121
|
|
}
|
122
|
|
public void setAddress(String address) {
|
123
|
|
this.address = address;
|
124
|
|
}
|
125
|
|
@Column(DE.Int_de)
|
126
|
|
public Integer getAuthentication() {
|
127
|
|
return authentication;
|
128
|
|
}
|
129
|
|
public void setAuthentication(Integer authentication) {
|
130
|
|
this.authentication = authentication;
|
131
|
|
}
|
132
|
|
@Column(DE.String_de)
|
133
|
|
public String getAuthType() {
|
134
|
|
return authType;
|
135
|
|
}
|
136
|
|
public void setAuthType(String authType) {
|
137
|
|
this.authType = authType;
|
138
|
|
}
|
139
|
|
@Column(DE.Int_de)
|
140
|
|
public Integer getAuthStatus() {
|
141
|
|
return authStatus;
|
142
|
|
}
|
143
|
|
public void setAuthStatus(Integer authStatus) {
|
144
|
|
this.authStatus = authStatus;
|
145
|
|
}
|
146
|
|
@Column(DE.Int_de)
|
147
|
|
public Integer getSortFirst() {
|
148
|
|
return sortFirst;
|
149
|
|
}
|
150
|
|
public void setSortFirst(Integer sortFirst) {
|
151
|
|
this.sortFirst = sortFirst;
|
152
|
|
}
|
153
|
|
@Column(DE.Int_de)
|
154
|
|
public Integer getAuthStatusExpert() {
|
155
|
|
return authStatusExpert;
|
156
|
|
}
|
157
|
|
public void setAuthStatusExpert(Integer authStatusExpert) {
|
158
|
|
this.authStatusExpert = authStatusExpert;
|
159
|
|
}
|
160
|
|
|
161
|
|
@Column(DE.String_de)
|
162
|
|
public String getOrgname() {
|
163
|
|
return orgname;
|
164
|
|
}
|
165
|
|
public void setOrgname(String orgname) {
|
166
|
|
this.orgname = orgname;
|
167
|
|
}
|
168
|
|
public String getDescp() {
|
169
|
|
return descp;
|
170
|
|
}
|
171
|
|
public void setDescp(String descp) {
|
172
|
|
this.descp = descp;
|
173
|
|
}
|
174
|
|
public String getCreateTime() {
|
175
|
|
return createTime;
|
176
|
|
}
|
177
|
|
public void setCreateTime(String createTime) {
|
178
|
|
this.createTime = createTime;
|
179
|
|
}
|
180
|
|
public String getModifyTime() {
|
181
|
|
return modifyTime;
|
182
|
|
}
|
183
|
|
public void setModifyTime(String modifyTime) {
|
184
|
|
this.modifyTime = modifyTime;
|
185
|
|
}
|
186
|
|
@Column(DE.String_de)
|
187
|
|
public String getPowType() {
|
188
|
|
return powType;
|
189
|
|
}
|
190
|
|
public void setPowType(String powType) {
|
191
|
|
this.powType = powType;
|
192
|
|
}
|
193
|
|
@Column(DE.String_de)
|
194
|
|
public String getCuserId() {
|
195
|
|
return cuserId;
|
196
|
|
}
|
197
|
|
public void setCuserId(String cuserId) {
|
198
|
|
this.cuserId = cuserId;
|
199
|
|
}
|
200
|
|
}
|
|
1
|
package com.ekexiu.console.system.po;
|
|
2
|
|
|
3
|
import com.ekexiu.console.basepo.CreateTimeSupported;
|
|
4
|
import com.ekexiu.console.basepo.DescpSupported;
|
|
5
|
import com.ekexiu.console.basepo.ModifyTimeSupported;
|
|
6
|
import org.jfw.apt.orm.annotation.entry.Column;
|
|
7
|
import org.jfw.apt.orm.annotation.entry.PrimaryKey;
|
|
8
|
import org.jfw.apt.orm.annotation.entry.Table;
|
|
9
|
import org.jfw.apt.orm.core.enums.DE;
|
|
10
|
|
|
11
|
@PrimaryKey("powerId")
|
|
12
|
@Table("view_my_customer")
|
|
13
|
public class MyCustomer implements CreateTimeSupported,ModifyTimeSupported,DescpSupported {
|
|
14
|
private String powerId;
|
|
15
|
private String id;
|
|
16
|
private String email;
|
|
17
|
private String phone;
|
|
18
|
private String subject;
|
|
19
|
private String industry;
|
|
20
|
private String department;
|
|
21
|
private String office;
|
|
22
|
private String orgId;
|
|
23
|
private String title;
|
|
24
|
private String name;
|
|
25
|
private String address;
|
|
26
|
private Integer authentication;
|
|
27
|
private String authType;
|
|
28
|
private Integer authStatus;
|
|
29
|
private Integer sortFirst;
|
|
30
|
private Integer authStatusExpert;
|
|
31
|
private String orgname;
|
|
32
|
private String descp;
|
|
33
|
private String createTime;
|
|
34
|
private String powType;
|
|
35
|
private String modifyTime;
|
|
36
|
private String cuserId;
|
|
37
|
private String cuserName;
|
|
38
|
//String_de大写的是允许为空,小写的是不允许为空
|
|
39
|
@Column(DE.string_de)
|
|
40
|
public String getPowerId() {
|
|
41
|
return powerId;
|
|
42
|
}
|
|
43
|
public void setPowerId(String powerId) {
|
|
44
|
this.powerId = powerId;
|
|
45
|
}
|
|
46
|
@Column(DE.String_de)
|
|
47
|
public String getId() {
|
|
48
|
return id;
|
|
49
|
}
|
|
50
|
public void setId(String id) {
|
|
51
|
this.id = id;
|
|
52
|
}
|
|
53
|
@Column(DE.String_de)
|
|
54
|
public String getEmail() {
|
|
55
|
return email;
|
|
56
|
}
|
|
57
|
|
|
58
|
public void setEmail(String email) {
|
|
59
|
this.email = email;
|
|
60
|
}
|
|
61
|
@Column(DE.String_de)
|
|
62
|
public String getSubject() {
|
|
63
|
return subject;
|
|
64
|
}
|
|
65
|
|
|
66
|
public void setSubject(String subject) {
|
|
67
|
this.subject = subject;
|
|
68
|
}
|
|
69
|
@Column(DE.String_de)
|
|
70
|
public String getPhone() {
|
|
71
|
return phone;
|
|
72
|
}
|
|
73
|
|
|
74
|
public void setPhone(String phone) {
|
|
75
|
this.phone = phone;
|
|
76
|
}
|
|
77
|
@Column(DE.String_de)
|
|
78
|
public String getIndustry() {
|
|
79
|
return industry;
|
|
80
|
}
|
|
81
|
public void setIndustry(String industry) {
|
|
82
|
this.industry = industry;
|
|
83
|
}
|
|
84
|
@Column(DE.String_de)
|
|
85
|
public String getDepartment() {
|
|
86
|
return department;
|
|
87
|
}
|
|
88
|
public void setDepartment(String department) {
|
|
89
|
this.department = department;
|
|
90
|
}
|
|
91
|
@Column(DE.String_de)
|
|
92
|
public String getOffice() {
|
|
93
|
return office;
|
|
94
|
}
|
|
95
|
public void setOffice(String office) {
|
|
96
|
this.office = office;
|
|
97
|
}
|
|
98
|
@Column(DE.String_de)
|
|
99
|
public String getOrgId() {
|
|
100
|
return orgId;
|
|
101
|
}
|
|
102
|
public void setOrgId(String orgId) {
|
|
103
|
this.orgId = orgId;
|
|
104
|
}
|
|
105
|
@Column(DE.String_de)
|
|
106
|
public String getTitle() {
|
|
107
|
return title;
|
|
108
|
}
|
|
109
|
public void setTitle(String title) {
|
|
110
|
this.title = title;
|
|
111
|
}
|
|
112
|
@Column(DE.String_de)
|
|
113
|
public String getName() {
|
|
114
|
return name;
|
|
115
|
}
|
|
116
|
public void setName(String name) {
|
|
117
|
this.name = name;
|
|
118
|
}
|
|
119
|
@Column(DE.String_de)
|
|
120
|
public String getAddress() {
|
|
121
|
return address;
|
|
122
|
}
|
|
123
|
public void setAddress(String address) {
|
|
124
|
this.address = address;
|
|
125
|
}
|
|
126
|
@Column(DE.Int_de)
|
|
127
|
public Integer getAuthentication() {
|
|
128
|
return authentication;
|
|
129
|
}
|
|
130
|
public void setAuthentication(Integer authentication) {
|
|
131
|
this.authentication = authentication;
|
|
132
|
}
|
|
133
|
@Column(DE.String_de)
|
|
134
|
public String getAuthType() {
|
|
135
|
return authType;
|
|
136
|
}
|
|
137
|
public void setAuthType(String authType) {
|
|
138
|
this.authType = authType;
|
|
139
|
}
|
|
140
|
@Column(DE.Int_de)
|
|
141
|
public Integer getAuthStatus() {
|
|
142
|
return authStatus;
|
|
143
|
}
|
|
144
|
public void setAuthStatus(Integer authStatus) {
|
|
145
|
this.authStatus = authStatus;
|
|
146
|
}
|
|
147
|
@Column(DE.Int_de)
|
|
148
|
public Integer getSortFirst() {
|
|
149
|
return sortFirst;
|
|
150
|
}
|
|
151
|
public void setSortFirst(Integer sortFirst) {
|
|
152
|
this.sortFirst = sortFirst;
|
|
153
|
}
|
|
154
|
@Column(DE.Int_de)
|
|
155
|
public Integer getAuthStatusExpert() {
|
|
156
|
return authStatusExpert;
|
|
157
|
}
|
|
158
|
public void setAuthStatusExpert(Integer authStatusExpert) {
|
|
159
|
this.authStatusExpert = authStatusExpert;
|
|
160
|
}
|
|
161
|
|
|
162
|
@Column(DE.String_de)
|
|
163
|
public String getOrgname() {
|
|
164
|
return orgname;
|
|
165
|
}
|
|
166
|
public void setOrgname(String orgname) {
|
|
167
|
this.orgname = orgname;
|
|
168
|
}
|
|
169
|
public String getDescp() {
|
|
170
|
return descp;
|
|
171
|
}
|
|
172
|
public void setDescp(String descp) {
|
|
173
|
this.descp = descp;
|
|
174
|
}
|
|
175
|
public String getCreateTime() {
|
|
176
|
return createTime;
|
|
177
|
}
|
|
178
|
public void setCreateTime(String createTime) {
|
|
179
|
this.createTime = createTime;
|
|
180
|
}
|
|
181
|
public String getModifyTime() {
|
|
182
|
return modifyTime;
|
|
183
|
}
|
|
184
|
public void setModifyTime(String modifyTime) {
|
|
185
|
this.modifyTime = modifyTime;
|
|
186
|
}
|
|
187
|
@Column(DE.String_de)
|
|
188
|
public String getPowType() {
|
|
189
|
return powType;
|
|
190
|
}
|
|
191
|
public void setPowType(String powType) {
|
|
192
|
this.powType = powType;
|
|
193
|
}
|
|
194
|
@Column(DE.String_de)
|
|
195
|
public String getCuserId() {
|
|
196
|
return cuserId;
|
|
197
|
}
|
|
198
|
public void setCuserId(String cuserId) {
|
|
199
|
this.cuserId = cuserId;
|
|
200
|
}
|
|
201
|
@Column(DE.String_de)
|
|
202
|
public String getCuserName() {
|
|
203
|
return cuserName;
|
|
204
|
}
|
|
205
|
public void setCuserName(String cuserName) {
|
|
206
|
this.cuserName = cuserName;
|
|
207
|
}
|
|
208
|
}
|