HisCtDept.java
2.23 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
package com.phxl.modules.goods.entity.ctdept;
import java.util.Date;
/**
*
* @ClassName: HisCtDept
* @Description: 医院科室表实体类
* @author hehaihong
* @date 2018-08-08 09:28:47
*
*/
public class HisCtDept{
private String hdeptCode; //科室编码
private String hdeptName; //科室名称
private String helpCode; //助记码
private String upperGUID; //上级编号
private String isOrderRight; //是否有订货权限
private String category; //类别
private String director; //主管
private String state; //状态
private String isLastLevel; //是否末级
private Date create_time; //创建时间
private Date update_time; //更新时间
private String id;
public String getId() {
return id;
}
public void setId(String id) {
this.id = id;
}
public String getHdeptCode() {
return hdeptCode;
}
public void setHdeptCode(String hdeptCode) {
this.hdeptCode = hdeptCode;
}
public String getHdeptName() {
return hdeptName;
}
public void setHdeptName(String hdeptName) {
this.hdeptName = hdeptName;
}
public String getHelpCode() {
return helpCode;
}
public void setHelpCode(String helpCode) {
this.helpCode = helpCode;
}
public String getUpperGUID() {
return upperGUID;
}
public void setUpperGUID(String upperGUID) {
this.upperGUID = upperGUID;
}
public String getIsOrderRight() {
return isOrderRight;
}
public void setIsOrderRight(String isOrderRight) {
this.isOrderRight = isOrderRight;
}
public String getCategory() {
return category;
}
public void setCategory(String category) {
this.category = category;
}
public String getDirector() {
return director;
}
public void setDirector(String director) {
this.director = director;
}
public String getState() {
return state;
}
public void setState(String state) {
this.state = state;
}
public String getIsLastLevel() {
return isLastLevel;
}
public void setIsLastLevel(String isLastLevel) {
this.isLastLevel = isLastLevel;
}
public Date getCreate_time() {
return create_time;
}
public void setCreate_time(Date create_time) {
this.create_time = create_time;
}
public Date getUpdate_time() {
return update_time;
}
public void setUpdate_time(Date update_time) {
this.update_time = update_time;
}
}