Commit aa8d5d433363c9bd1799583173bf71f86938779f
1 parent
b453615f07
Exists in
master
and in
6 other branches
update
Showing 1 changed file with 127 additions and 0 deletions
platform-dal/src/main/java/com/lyms/platform/pojo/HosptialOpinions.java
View file @
aa8d5d4
1 | +package com.lyms.platform.pojo; | |
2 | + | |
3 | +import com.lyms.platform.beans.SerialIdEnum; | |
4 | +import com.lyms.platform.common.result.BaseModel; | |
5 | +import org.springframework.data.annotation.Id; | |
6 | +import org.springframework.data.mongodb.core.mapping.Document; | |
7 | + | |
8 | +/** | |
9 | + * 医院自定义处理意见 和 指导意见内容 | |
10 | + */ | |
11 | +@Document(collection="lyms_hosptial_opinions") | |
12 | +public class HosptialOpinions extends BaseModel { | |
13 | + private static final long serialVersionUID = 2299034928187627533L; | |
14 | + | |
15 | + @Id | |
16 | + private String id; | |
17 | + //医院id | |
18 | + private String hospitalId; | |
19 | + //医生姓名 | |
20 | + private String doctorName; | |
21 | + //创建时间 | |
22 | + private Long createDate; | |
23 | + //修改时间 | |
24 | + private Long modifiedDate; | |
25 | + //是否有效0-无效,1-有效 | |
26 | + private Integer yn; | |
27 | + //是否使用、true-使用,false-未使用,false在下拉框不显示,在数据中显示 | |
28 | + private boolean isUse; | |
29 | + //权重 | |
30 | + private Integer weight; | |
31 | + //1 处理意见内容 2 指导意见内容 | |
32 | + private Integer type; | |
33 | + //处理意见内容 | |
34 | + private String handleContent; | |
35 | + //指导意见内容 | |
36 | + private String guideContent; | |
37 | + | |
38 | + | |
39 | + | |
40 | + public String getId() { | |
41 | + return id; | |
42 | + } | |
43 | + | |
44 | + public void setId(String id) { | |
45 | + this.id = id; | |
46 | + } | |
47 | + | |
48 | + public String getHospitalId() { | |
49 | + return hospitalId; | |
50 | + } | |
51 | + | |
52 | + public void setHospitalId(String hospitalId) { | |
53 | + this.hospitalId = hospitalId; | |
54 | + } | |
55 | + | |
56 | + public String getDoctorName() { | |
57 | + return doctorName; | |
58 | + } | |
59 | + | |
60 | + public void setDoctorName(String doctorName) { | |
61 | + this.doctorName = doctorName; | |
62 | + } | |
63 | + | |
64 | + public Long getCreateDate() { | |
65 | + return createDate; | |
66 | + } | |
67 | + | |
68 | + public void setCreateDate(Long createDate) { | |
69 | + this.createDate = createDate; | |
70 | + } | |
71 | + | |
72 | + public Long getModifiedDate() { | |
73 | + return modifiedDate; | |
74 | + } | |
75 | + | |
76 | + public void setModifiedDate(Long modifiedDate) { | |
77 | + this.modifiedDate = modifiedDate; | |
78 | + } | |
79 | + | |
80 | + public Integer getYn() { | |
81 | + return yn; | |
82 | + } | |
83 | + | |
84 | + public void setYn(Integer yn) { | |
85 | + this.yn = yn; | |
86 | + } | |
87 | + | |
88 | + public boolean isUse() { | |
89 | + return isUse; | |
90 | + } | |
91 | + | |
92 | + public void setUse(boolean use) { | |
93 | + isUse = use; | |
94 | + } | |
95 | + | |
96 | + public Integer getWeight() { | |
97 | + return weight; | |
98 | + } | |
99 | + | |
100 | + public void setWeight(Integer weight) { | |
101 | + this.weight = weight; | |
102 | + } | |
103 | + | |
104 | + public Integer getType() { | |
105 | + return type; | |
106 | + } | |
107 | + | |
108 | + public void setType(Integer type) { | |
109 | + this.type = type; | |
110 | + } | |
111 | + | |
112 | + public String getHandleContent() { | |
113 | + return handleContent; | |
114 | + } | |
115 | + | |
116 | + public void setHandleContent(String handleContent) { | |
117 | + this.handleContent = handleContent; | |
118 | + } | |
119 | + | |
120 | + public String getGuideContent() { | |
121 | + return guideContent; | |
122 | + } | |
123 | + | |
124 | + public void setGuideContent(String guideContent) { | |
125 | + this.guideContent = guideContent; | |
126 | + } | |
127 | +} |