Commit 20bdcf2f0da9826d09f9ac01c6e2242dec6d2247
1 parent
8125652e06
Exists in
master
and in
7 other branches
分娩作废产检劵
Showing 1 changed file with 361 additions and 0 deletions
platform-dal/src/main/java/com/lyms/platform/pojo/AntExPRecordModel.java
View file @
20bdcf2
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.mongodb.core.mapping.Document; | |
6 | + | |
7 | +import java.util.Date; | |
8 | +import java.util.List; | |
9 | + | |
10 | +/** | |
11 | + * 产检医生和产检人 | |
12 | + * <p/> | |
13 | + * Created by Administrator on 2016/11/28 0028. | |
14 | + */ | |
15 | +@Document(collection = "lyms_antexprecord") | |
16 | +public class AntExPRecordModel extends BaseModel { | |
17 | + | |
18 | + private static final long serialVersionUID = SerialIdEnum.AntExPRecordModel.getCid(); | |
19 | + | |
20 | + private String id; | |
21 | + //原始表的id | |
22 | + private String fId; | |
23 | + //条码号 | |
24 | + private String barCode; | |
25 | + private String cardNo; | |
26 | + | |
27 | + //产检后的天数 | |
28 | + private Integer cDay; | |
29 | + | |
30 | + private String parentId; | |
31 | + | |
32 | + private String hospitalId; | |
33 | + //手机号 | |
34 | + private String phone; | |
35 | + //状态 1 已分娩 2未分娩 | |
36 | + private int status; | |
37 | + //类型 1 初诊 2复诊 | |
38 | + private Integer type; | |
39 | + //产检医生 | |
40 | + private String checkDoctor; | |
41 | + //产检时间 | |
42 | + private Date checkTime; | |
43 | + //孕妇姓名 | |
44 | + private String name; | |
45 | + //生日用于算年龄 | |
46 | + private Date brith; | |
47 | + //预产期 | |
48 | + private Date dueDate; | |
49 | + //高危评分 | |
50 | + private Integer hScore; | |
51 | + //高危等级 | |
52 | + private List hLevel; | |
53 | + //风险因素 | |
54 | + private List hRisk; | |
55 | + private String pid; | |
56 | + //建档时间 | |
57 | + private Date buildTime; | |
58 | + //建档医生 | |
59 | + private String buildDoctor; | |
60 | + //末次月经 | |
61 | + private Date lastMenses; | |
62 | + | |
63 | + private Date modified; | |
64 | + | |
65 | + private Date created; | |
66 | + //下次产检时间 | |
67 | + private Date nextCheckTime; | |
68 | + //户籍地 | |
69 | + private String addressRegister; | |
70 | + private String provinceRegisterId; | |
71 | + private String cityRegisterId; | |
72 | + private String areaRegisterId; | |
73 | + private String streetRegisterId; | |
74 | + //居住地 | |
75 | + private String address; | |
76 | + private String provinceId; | |
77 | + private String cityId; | |
78 | + private String areaId; | |
79 | + private String streetId; | |
80 | + | |
81 | + | |
82 | + public String getAddress() { | |
83 | + return address; | |
84 | + } | |
85 | + | |
86 | + public void setAddress(String address) { | |
87 | + this.address = address; | |
88 | + } | |
89 | + | |
90 | + public String getProvinceId() { | |
91 | + return provinceId; | |
92 | + } | |
93 | + | |
94 | + public void setProvinceId(String provinceId) { | |
95 | + this.provinceId = provinceId; | |
96 | + } | |
97 | + | |
98 | + public String getCityId() { | |
99 | + return cityId; | |
100 | + } | |
101 | + | |
102 | + public void setCityId(String cityId) { | |
103 | + this.cityId = cityId; | |
104 | + } | |
105 | + | |
106 | + public String getAreaId() { | |
107 | + return areaId; | |
108 | + } | |
109 | + | |
110 | + public void setAreaId(String areaId) { | |
111 | + this.areaId = areaId; | |
112 | + } | |
113 | + | |
114 | + public String getStreetId() { | |
115 | + return streetId; | |
116 | + } | |
117 | + | |
118 | + public void setStreetId(String streetId) { | |
119 | + this.streetId = streetId; | |
120 | + } | |
121 | + | |
122 | + public Integer getcDay() { | |
123 | + return cDay; | |
124 | + } | |
125 | + | |
126 | + public void setcDay(Integer cDay) { | |
127 | + this.cDay = cDay; | |
128 | + } | |
129 | + | |
130 | + public String getCardNo() { | |
131 | + return cardNo; | |
132 | + } | |
133 | + | |
134 | + public void setCardNo(String cardNo) { | |
135 | + this.cardNo = cardNo; | |
136 | + } | |
137 | + | |
138 | + public String getAddressRegister() { | |
139 | + return addressRegister; | |
140 | + } | |
141 | + | |
142 | + public void setAddressRegister(String addressRegister) { | |
143 | + this.addressRegister = addressRegister; | |
144 | + } | |
145 | + | |
146 | + public String getProvinceRegisterId() { | |
147 | + return provinceRegisterId; | |
148 | + } | |
149 | + | |
150 | + public void setProvinceRegisterId(String provinceRegisterId) { | |
151 | + this.provinceRegisterId = provinceRegisterId; | |
152 | + } | |
153 | + | |
154 | + public String getCityRegisterId() { | |
155 | + return cityRegisterId; | |
156 | + } | |
157 | + | |
158 | + public void setCityRegisterId(String cityRegisterId) { | |
159 | + this.cityRegisterId = cityRegisterId; | |
160 | + } | |
161 | + | |
162 | + public String getAreaRegisterId() { | |
163 | + return areaRegisterId; | |
164 | + } | |
165 | + | |
166 | + public void setAreaRegisterId(String areaRegisterId) { | |
167 | + this.areaRegisterId = areaRegisterId; | |
168 | + } | |
169 | + | |
170 | + public String getStreetRegisterId() { | |
171 | + return streetRegisterId; | |
172 | + } | |
173 | + | |
174 | + public void setStreetRegisterId(String streetRegisterId) { | |
175 | + this.streetRegisterId = streetRegisterId; | |
176 | + } | |
177 | + | |
178 | + public Date getNextCheckTime() { | |
179 | + return nextCheckTime; | |
180 | + } | |
181 | + | |
182 | + public void setNextCheckTime(Date nextCheckTime) { | |
183 | + this.nextCheckTime = nextCheckTime; | |
184 | + } | |
185 | + | |
186 | + public String getBuildDoctor() { | |
187 | + return buildDoctor; | |
188 | + } | |
189 | + | |
190 | + public void setBuildDoctor(String buildDoctor) { | |
191 | + this.buildDoctor = buildDoctor; | |
192 | + } | |
193 | + | |
194 | + public String getBarCode() { | |
195 | + return barCode; | |
196 | + } | |
197 | + | |
198 | + public void setBarCode(String barCode) { | |
199 | + this.barCode = barCode; | |
200 | + } | |
201 | + | |
202 | + public String getPhone() { | |
203 | + return phone; | |
204 | + } | |
205 | + | |
206 | + public void setPhone(String phone) { | |
207 | + this.phone = phone; | |
208 | + } | |
209 | + | |
210 | + public String getfId() { | |
211 | + return fId; | |
212 | + } | |
213 | + | |
214 | + public void setfId(String fId) { | |
215 | + this.fId = fId; | |
216 | + } | |
217 | + | |
218 | + public Date getModified() { | |
219 | + return modified; | |
220 | + } | |
221 | + | |
222 | + public void setModified(Date modified) { | |
223 | + this.modified = modified; | |
224 | + } | |
225 | + | |
226 | + public Date getCreated() { | |
227 | + return created; | |
228 | + } | |
229 | + | |
230 | + public void setCreated(Date created) { | |
231 | + this.created = created; | |
232 | + } | |
233 | + | |
234 | + public Date getBuildTime() { | |
235 | + return buildTime; | |
236 | + } | |
237 | + | |
238 | + public void setBuildTime(Date buildTime) { | |
239 | + this.buildTime = buildTime; | |
240 | + } | |
241 | + | |
242 | + public Date getLastMenses() { | |
243 | + return lastMenses; | |
244 | + } | |
245 | + | |
246 | + public void setLastMenses(Date lastMenses) { | |
247 | + this.lastMenses = lastMenses; | |
248 | + } | |
249 | + | |
250 | + public String getPid() { | |
251 | + return pid; | |
252 | + } | |
253 | + | |
254 | + public void setPid(String pid) { | |
255 | + this.pid = pid; | |
256 | + } | |
257 | + | |
258 | + public String getHospitalId() { | |
259 | + return hospitalId; | |
260 | + } | |
261 | + | |
262 | + public void setHospitalId(String hospitalId) { | |
263 | + this.hospitalId = hospitalId; | |
264 | + } | |
265 | + | |
266 | + public String getId() { | |
267 | + return id; | |
268 | + } | |
269 | + | |
270 | + public void setId(String id) { | |
271 | + this.id = id; | |
272 | + } | |
273 | + | |
274 | + public String getParentId() { | |
275 | + return parentId; | |
276 | + } | |
277 | + | |
278 | + public void setParentId(String parentId) { | |
279 | + this.parentId = parentId; | |
280 | + } | |
281 | + | |
282 | + public int getStatus() { | |
283 | + return status; | |
284 | + } | |
285 | + | |
286 | + public void setStatus(int status) { | |
287 | + this.status = status; | |
288 | + } | |
289 | + | |
290 | + public Integer getType() { | |
291 | + return type; | |
292 | + } | |
293 | + | |
294 | + public void setType(Integer type) { | |
295 | + this.type = type; | |
296 | + } | |
297 | + | |
298 | + public String getCheckDoctor() { | |
299 | + return checkDoctor; | |
300 | + } | |
301 | + | |
302 | + public void setCheckDoctor(String checkDoctor) { | |
303 | + this.checkDoctor = checkDoctor; | |
304 | + } | |
305 | + | |
306 | + public Date getCheckTime() { | |
307 | + return checkTime; | |
308 | + } | |
309 | + | |
310 | + public void setCheckTime(Date checkTime) { | |
311 | + this.checkTime = checkTime; | |
312 | + } | |
313 | + | |
314 | + public String getName() { | |
315 | + return name; | |
316 | + } | |
317 | + | |
318 | + public void setName(String name) { | |
319 | + this.name = name; | |
320 | + } | |
321 | + | |
322 | + public Date getBrith() { | |
323 | + return brith; | |
324 | + } | |
325 | + | |
326 | + public void setBrith(Date brith) { | |
327 | + this.brith = brith; | |
328 | + } | |
329 | + | |
330 | + public Date getDueDate() { | |
331 | + return dueDate; | |
332 | + } | |
333 | + | |
334 | + public void setDueDate(Date dueDate) { | |
335 | + this.dueDate = dueDate; | |
336 | + } | |
337 | + | |
338 | + public Integer gethScore() { | |
339 | + return hScore; | |
340 | + } | |
341 | + | |
342 | + public void sethScore(Integer hScore) { | |
343 | + this.hScore = hScore; | |
344 | + } | |
345 | + | |
346 | + public List gethLevel() { | |
347 | + return hLevel; | |
348 | + } | |
349 | + | |
350 | + public void sethLevel(List hLevel) { | |
351 | + this.hLevel = hLevel; | |
352 | + } | |
353 | + | |
354 | + public List gethRisk() { | |
355 | + return hRisk; | |
356 | + } | |
357 | + | |
358 | + public void sethRisk(List hRisk) { | |
359 | + this.hRisk = hRisk; | |
360 | + } | |
361 | +} |