Selaa lähdekoodia

专家实体类增加address属性

zzy.zhiyuan.foxmail 8 vuotta sitten
vanhempi
commit
da285b2201
1 muutettua tiedostoa jossa 176 lisäystä ja 159 poistoa
  1. 176 159
      src/main/java/com/ekexiu/portal/po/Professor.java

+ 176 - 159
src/main/java/com/ekexiu/portal/po/Professor.java

@ -1,159 +1,176 @@
1
package com.ekexiu.portal.po;
2

3
import org.jfw.apt.orm.annotation.entry.Column;
4
import org.jfw.apt.orm.annotation.entry.PrimaryKey;
5
import org.jfw.apt.orm.annotation.entry.Table;
6
import org.jfw.apt.orm.core.defaultImpl.FixLenStringHandler;
7
import org.jfw.apt.orm.core.defaultImpl.StringHandler;
8
import org.jfw.apt.orm.core.enums.DE;
9

10
import com.ekexiu.portal.basepo.CreateTimeSupported;
11
import com.ekexiu.portal.basepo.ModifyTimeSupported;
12
@PrimaryKey("id")
13
@Table
14
public class Professor implements CreateTimeSupported, ModifyTimeSupported{
15

16
	private String id;
17
	private String name;
18
	private boolean authentication;
19
	
20
	private String office;
21
	/**
22
	 *职称 
23
	 */
24
	private String title;
25
	private String orgId;
26
	private String department;
27
	/**
28
	 * 学科
29
	 */
30
	private String subject;
31
	/**
32
	 * 应用行业
33
	 */
34
	private String industry;
35
	private String descp;
36
	private String createTime;
37
	private String modifyTime;
38
	
39
	
40
	@Column(value=DE.String_de,dbType="TEXT")
41
	public String getOffice() {
42
		return office;
43
	}
44

45
	public void setOffice(String office) {
46
		this.office = office;
47
	}
48

49
	@Column(handlerClass=StringHandler.class,dbType="TEXT",insertable=false,nullable=true,renewable=false,queryable=true)
50
	public String getSubject() {
51
		return subject;
52
	}
53

54
	public void setSubject(String subject) {
55
		this.subject = subject;
56
	}
57
	@Column(handlerClass=StringHandler.class,dbType="TEXT",insertable=false,nullable=true,renewable=false,queryable=true)
58
	public String getIndustry() {
59
		return industry;
60
	}
61

62
	public void setIndustry(String industry) {
63
		this.industry = industry;
64
	}
65

66
	/**
67
	 * 机构部门
68
	 * @return
69
	 */
70
	@Column(DE.string_de)
71
	public String getDepartment() {
72
		return department;
73
	}
74

75
	public void setDepartment(String department) {
76
		this.department = department;
77
	}
78

79
	/**
80
	 * 任职机构ID
81
	 * @return
82
	 */
83
	@Column(dbType="CHAR(32)",handlerClass=FixLenStringHandler.class)
84
	public String getOrgId() {
85
		return orgId;
86
	}
87

88
	public void setOrgId(String orgId) {
89
		this.orgId = orgId;
90
	}
91

92
	/**
93
	 * 职称
94
	 * @return
95
	 */
96
	@Column(DE.string_de)
97
   public String getTitle() {
98
		return title;
99
	}
100

101
	public void setTitle(String title) {
102
		this.title = title;
103
	}
104
	/**
105
	 * 是否认证
106
	 * @return
107
	 */
108
	@Column(value=DE.boolean_de)
109
	public boolean isAuthentication() {
110
		return authentication;
111
	}
112

113
	public void setAuthentication(boolean authentication) {
114
		this.authentication = authentication;
115
	}
116

117
	@Column(DE.id_32)
118
	public String getId() {
119
		return id;
120
	}
121

122
	public void setId(String id) {
123
		this.id = id;
124
	}
125

126
	@Column(DE.dictCaption)
127
	public String getName() {
128
		return name;
129
	}
130

131
	public void setName(String name) {
132
		this.name = name;
133
	}
134
	@Column(handlerClass=StringHandler.class,dbType="TEXT",insertable=false,nullable=true,renewable=false,queryable=true)
135
	public String getDescp() {
136
		return descp;
137
	}
138

139
	public void setDescp(String descp) {
140
		this.descp = descp;
141
	}
142

143
	public String getCreateTime() {
144
		return createTime;
145
	}
146

147
	public void setCreateTime(String createTime) {
148
		this.createTime = createTime;
149
	}
150

151
	public String getModifyTime() {
152
		return modifyTime;
153
	}
154

155
	public void setModifyTime(String modifyTime) {
156
		this.modifyTime = modifyTime;
157
	}
158

159
}
1
package com.ekexiu.portal.po;
2
3
import org.jfw.apt.orm.annotation.entry.Column;
4
import org.jfw.apt.orm.annotation.entry.PrimaryKey;
5
import org.jfw.apt.orm.annotation.entry.Table;
6
import org.jfw.apt.orm.core.defaultImpl.StringHandler;
7
import org.jfw.apt.orm.core.enums.DE;
8
9
import com.ekexiu.portal.basepo.CreateTimeSupported;
10
import com.ekexiu.portal.basepo.ModifyTimeSupported;
11
@PrimaryKey("id")
12
@Table
13
public class Professor implements CreateTimeSupported, ModifyTimeSupported{
14
15
	private String id;
16
	private String name;
17
	private boolean authentication;
18
	
19
	private String office;
20
	/**
21
	 *职称 
22
	 */
23
	private String title;
24
	private String orgId;
25
	private String department;
26
	/**
27
	 * 学科
28
	 */
29
	private String subject;
30
	/**
31
	 * 应用行业
32
	 */
33
	private String industry;
34
	private String address;
35
	private String descp;
36
	private String createTime;
37
	private String modifyTime;
38
	private Organization organization;
39
	
40
	public Organization getOrganization() {
41
		return organization;
42
	}
43
44
	public void setOrganization(Organization organization) {
45
		this.organization = organization;
46
	}
47
48
	@Column(value=DE.String_de,dbType="TEXT")
49
	public String getOffice() {
50
		return office;
51
	}
52
53
	public void setOffice(String office) {
54
		this.office = office;
55
	}
56
57
	@Column(handlerClass=StringHandler.class,dbType="TEXT",insertable=false,nullable=true,renewable=false,queryable=true)
58
	public String getSubject() {
59
		return subject;
60
	}
61
62
	public void setSubject(String subject) {
63
		this.subject = subject;
64
	}
65
	@Column(handlerClass=StringHandler.class,dbType="TEXT",insertable=false,nullable=true,renewable=false,queryable=true)
66
	public String getIndustry() {
67
		return industry;
68
	}
69
70
	public void setIndustry(String industry) {
71
		this.industry = industry;
72
	}
73
	
74
	@Column(DE.string_de)
75
	public String getAddress() {
76
		return address;
77
	}
78
79
	public void setAddress(String address) {
80
		this.address = address;
81
	}
82
83
	/**
84
	 * 机构部门
85
	 * @return
86
	 */
87
	@Column(DE.string_de)
88
	public String getDepartment() {
89
		return department;
90
	}
91
92
	public void setDepartment(String department) {
93
		this.department = department;
94
	}
95
96
	/**
97
	 * 任职机构ID
98
	 * @return
99
	 */
100
	@Column(DE.id_32)
101
	public String getOrgId() {
102
		return orgId;
103
	}
104
105
	public void setOrgId(String orgId) {
106
		this.orgId = orgId;
107
	}
108
109
	/**
110
	 * 职称
111
	 * @return
112
	 */
113
	@Column(DE.string_de)
114
	public String getTitle() {
115
		return title;
116
	}
117
118
	public void setTitle(String title) {
119
		this.title = title;
120
	}
121
	/**
122
	 * 是否认证
123
	 * @return
124
	 */
125
	@Column(value=DE.boolean_de)
126
	public boolean isAuthentication() {
127
		return authentication;
128
	}
129
130
	public void setAuthentication(boolean authentication) {
131
		this.authentication = authentication;
132
	}
133
134
	@Column(DE.id_32)
135
	public String getId() {
136
		return id;
137
	}
138
139
	public void setId(String id) {
140
		this.id = id;
141
	}
142
143
	@Column(DE.dictCaption)
144
	public String getName() {
145
		return name;
146
	}
147
148
	public void setName(String name) {
149
		this.name = name;
150
	}
151
	@Column(handlerClass=StringHandler.class,dbType="TEXT",insertable=false,nullable=true,renewable=false,queryable=true)
152
	public String getDescp() {
153
		return descp;
154
	}
155
156
	public void setDescp(String descp) {
157
		this.descp = descp;
158
	}
159
160
	public String getCreateTime() {
161
		return createTime;
162
	}
163
164
	public void setCreateTime(String createTime) {
165
		this.createTime = createTime;
166
	}
167
168
	public String getModifyTime() {
169
		return modifyTime;
170
	}
171
172
	public void setModifyTime(String modifyTime) {
173
		this.modifyTime = modifyTime;
174
	}
175
176
}