AsraOpRelations.java
1.06 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
package com.zteits.oa.report.domain;
public class AsraOpRelations {
/**主键*/
private Long id;
/**父级ID*/
private Long parentId;
/**员工ID*/
private Long opId;
/**数据状态:1有效,0无效,2:锁定*/
private Integer dataState;
/**获取主键*/
public Long getId() {
return id;
}
/**设置主键*/
public void setId(Long id) {
this.id = id;
}
/**获取父级ID*/
public Long getParentId() {
return parentId;
}
/**设置父级ID*/
public void setParentId(Long parentId) {
this.parentId = parentId;
}
/**获取员工ID*/
public Long getOpId() {
return opId;
}
/**设置员工ID*/
public void setOpId(Long opId) {
this.opId = opId;
}
/**获取数据状态:1有效,0无效,2:锁定*/
public Integer getDataState() {
return dataState;
}
/**设置数据状态:1有效,0无效,2:锁定*/
public void setDataState(Integer dataState) {
this.dataState = dataState;
}
}