|
@ -1,43 +1,44 @@
|
1
|
|
package com.ekexiu.portal.po;
|
2
|
|
|
3
|
|
import org.jfw.apt.orm.annotation.entry.Column;
|
4
|
|
import org.jfw.apt.orm.annotation.entry.Table;
|
5
|
|
import org.jfw.apt.orm.core.enums.DE;
|
6
|
|
|
7
|
|
@Table
|
8
|
|
public class ResearchAreaLog {
|
9
|
|
private String professorId;
|
10
|
|
private String caption;
|
11
|
|
private String opreteProfessorId;
|
12
|
|
private String createTime;
|
13
|
|
@Column(DE.id_32)
|
14
|
|
public String getOpreteProfessorId() {
|
15
|
|
return opreteProfessorId;
|
16
|
|
}
|
17
|
|
public void setOpreteProfessorId(String opreteProfessorId) {
|
18
|
|
this.opreteProfessorId = opreteProfessorId;
|
19
|
|
}
|
20
|
|
@Column(DE.createDateTime_de)
|
21
|
|
public String getCreateTime() {
|
22
|
|
return createTime;
|
23
|
|
}
|
24
|
|
public void setCreateTime(String createTime) {
|
25
|
|
this.createTime = createTime;
|
26
|
|
}
|
27
|
|
@Column(DE.id_32)
|
28
|
|
public String getProfessorId() {
|
29
|
|
return professorId;
|
30
|
|
}
|
31
|
|
public void setProfessorId(String orgId) {
|
32
|
|
this.professorId = orgId;
|
33
|
|
}
|
34
|
|
@Column(DE.string_de)
|
35
|
|
public String getCaption() {
|
36
|
|
return caption;
|
37
|
|
}
|
38
|
|
public void setCaption(String catpion) {
|
39
|
|
this.caption = catpion;
|
40
|
|
}
|
41
|
|
|
42
|
|
|
43
|
|
}
|
|
1
|
package com.ekexiu.portal.po;
|
|
2
|
|
|
3
|
import org.jfw.apt.orm.annotation.entry.Column;
|
|
4
|
import org.jfw.apt.orm.annotation.entry.Table;
|
|
5
|
import org.jfw.apt.orm.core.defaultImpl.FixLenStringHandler;
|
|
6
|
import org.jfw.apt.orm.core.enums.DE;
|
|
7
|
|
|
8
|
@Table
|
|
9
|
public class ResearchAreaLog {
|
|
10
|
private String professorId;
|
|
11
|
private String caption;
|
|
12
|
private String opreteProfessorId;
|
|
13
|
private String createTime;
|
|
14
|
@Column(DE.id_32)
|
|
15
|
public String getOpreteProfessorId() {
|
|
16
|
return opreteProfessorId;
|
|
17
|
}
|
|
18
|
public void setOpreteProfessorId(String opreteProfessorId) {
|
|
19
|
this.opreteProfessorId = opreteProfessorId;
|
|
20
|
}
|
|
21
|
@Column(handlerClass = FixLenStringHandler.class, dbType = "CHAR(14)", fixSqlValueWithInsert = "TO_CHAR(NOW(),'YYYYMMDDHH24MISS')", insertable = true, nullable = false, queryable = true, renewable = false)
|
|
22
|
public String getCreateTime() {
|
|
23
|
return createTime;
|
|
24
|
}
|
|
25
|
public void setCreateTime(String createTime) {
|
|
26
|
this.createTime = createTime;
|
|
27
|
}
|
|
28
|
@Column(DE.id_32)
|
|
29
|
public String getProfessorId() {
|
|
30
|
return professorId;
|
|
31
|
}
|
|
32
|
public void setProfessorId(String orgId) {
|
|
33
|
this.professorId = orgId;
|
|
34
|
}
|
|
35
|
@Column(DE.string_de)
|
|
36
|
public String getCaption() {
|
|
37
|
return caption;
|
|
38
|
}
|
|
39
|
public void setCaption(String catpion) {
|
|
40
|
this.caption = catpion;
|
|
41
|
}
|
|
42
|
|
|
43
|
|
|
44
|
}
|