Commit 7fa97d48cc1051e41f4488d512e02a678503834d
1 parent
639a0ada53
Exists in
master
and in
6 other branches
省平台孕前优生
Showing 1 changed file with 469 additions and 0 deletions
platform-operate-api/src/main/java/com/lyms/hospitalapi/lhxfy/model/Archives.java
View file @
7fa97d4
... | ... | @@ -4,5 +4,474 @@ |
4 | 4 | * 省平台孕前优生档案实体对象 |
5 | 5 | */ |
6 | 6 | public class Archives { |
7 | + | |
8 | + private String key; // 上传需要的密钥 | |
9 | + private String docName; // 医师签名 | |
10 | + private String fillTime; // 填写日期 | |
11 | + private String isCharge; // 收费类型 01 免费 02 收费 | |
12 | + private String countyName; // 县级服务机构名称 | |
13 | + private String villageName; // 乡级服务机构名称 | |
14 | + private String wifeName; // 妻子姓名 | |
15 | + private String wife_idCard; // 妻子身份证号 | |
16 | + private String wifeAge; // 妻子年龄 | |
17 | + private String wifeBirth; // 妻子出生时间 | |
18 | + private String wifeNationCode; // 妻子民族编码(具体见附表) | |
19 | + private String wifeCultureCode; // 妻子文化程度01:文盲 02:小学03:初中 04:高中/中专/中技05:大专/大本06:硕士研究生、博士研究生 | |
20 | + private String wifeRegisteredCode; // 妻子户口性质01 农业户口 02 非农业户口 | |
21 | + private String wifeOccupationCode; // 妻子职业(具体见附表) | |
22 | + private String motherLandline; // 座机号 | |
23 | + private String motherEmail; // 邮箱 | |
24 | + private String motherQQ; // QQ | |
25 | + private String motherWechat; // 妻子微信 | |
26 | + private String wifeOccupationCodeContent; // 妻子职业07的其他的时候存入的信息 | |
27 | + private String wifeTelephone; // 妻子联系电话 | |
28 | + private String wifeCertificatesCode; // 妻子证件类型(传空的话默认01)01:居民身份证02:护照 03: 港澳居民身份证04:军官证 05: 其他有效证件 | |
29 | + private String wife_current_village; // 妻子现住址村级区划 | |
30 | + private String wife_regist_village; // 妻子户口村级区划 | |
31 | + private String husbandName; // 丈夫姓名 | |
32 | + private String husbandTelephone; // 丈夫联系电话 | |
33 | + private String husbandAge; // 丈夫年龄 | |
34 | + private String husbandCode; // 丈夫邮编 | |
35 | + private String fatherEmail; // 邮箱 | |
36 | + private String fatherQQ; // QQ | |
37 | + private String fatherWechat; // 丈夫微信 | |
38 | + private String husband_idCard; // 丈夫身份证号 | |
39 | + private String husbandBirth; // 丈夫出生时间 | |
40 | + private String husbandNationCode; // 丈夫民族编码(具体见附表) | |
41 | + private String husbandCultureCode; // 丈夫文化程度01:文盲 02:小学03:初中 04:高中/中专/中技05:大专/大本06:硕士研究生、博士研究生 | |
42 | + private String husbandRegisteredCode; // 丈夫户口性质01 农业户口 02 非农业户口 | |
43 | + private String husbandOccupationCode; // 丈夫职业(具体见附表) | |
44 | + private String husbandOccupationCodeContent; // 丈夫职业07的时候需要存入信息 | |
45 | + private String husbandCertificatesCode; // 丈夫证件类型(传空的话默认01)01:居民身份证02:护照 03: 港澳居民身份证04:军官证 05: 其他有效证件 | |
46 | + private String husband_village; // 丈夫户口村级区划 | |
47 | + private String zipCode; // 妻子邮编 | |
48 | + private String marriageTime; // 结婚时间 | |
49 | + private String subUnitsVillage; // 隶属单位 村级区划(应是隶属单位下的区划) | |
50 | + private String marriageTypeCode; // 婚姻状态01:初婚 02:再婚 03:复婚 | |
51 | + private String floatingCode; // 是否流动人口 1 是 2 否 | |
52 | + private String periMarriageEducation; // 优生健康教育 下拉选 01双方接受教育 02 男方接受教育 03 女方接受教育 | |
53 | + private String isPection; // 是否同步到婚检 1是 0否(注意isPection如果在建档时传的是0,在修改档案或者后续检查如果传1,是无法同步到婚检的,只有在建档时传了1,后续修改档案和录入检查才可以同步到婚检。) | |
54 | + private String husbandWorkUnit; // 丈夫工作单位 | |
55 | + private String husbandResidentialCategory; // 丈夫居住类别 01 本地 02 非本地居住一年以下 03 非本地居住一年以上 | |
56 | + private String wifeWorkUnit; // 妻子工作单位 | |
57 | + private String wifeResidentialCategory; // 妻子居住类别01 本地02 非本地居住一年以下03 非本地居住一年以上 | |
58 | + private String husbandAddressVillage; // 丈夫现住址村级区划 | |
59 | + private String informedConsent; // 知情同意书签署情况01男方签署 02 女方签署 03 双方签署 | |
60 | + | |
61 | + public String getKey() { | |
62 | + return key; | |
63 | + } | |
64 | + | |
65 | + public void setKey(String key) { | |
66 | + this.key = key; | |
67 | + } | |
68 | + | |
69 | + public String getDocName() { | |
70 | + return docName; | |
71 | + } | |
72 | + | |
73 | + public void setDocName(String docName) { | |
74 | + this.docName = docName; | |
75 | + } | |
76 | + | |
77 | + public String getFillTime() { | |
78 | + return fillTime; | |
79 | + } | |
80 | + | |
81 | + public void setFillTime(String fillTime) { | |
82 | + this.fillTime = fillTime; | |
83 | + } | |
84 | + | |
85 | + public String getIsCharge() { | |
86 | + return isCharge; | |
87 | + } | |
88 | + | |
89 | + public void setIsCharge(String isCharge) { | |
90 | + this.isCharge = isCharge; | |
91 | + } | |
92 | + | |
93 | + public String getCountyName() { | |
94 | + return countyName; | |
95 | + } | |
96 | + | |
97 | + public void setCountyName(String countyName) { | |
98 | + this.countyName = countyName; | |
99 | + } | |
100 | + | |
101 | + public String getVillageName() { | |
102 | + return villageName; | |
103 | + } | |
104 | + | |
105 | + public void setVillageName(String villageName) { | |
106 | + this.villageName = villageName; | |
107 | + } | |
108 | + | |
109 | + public String getWifeName() { | |
110 | + return wifeName; | |
111 | + } | |
112 | + | |
113 | + public void setWifeName(String wifeName) { | |
114 | + this.wifeName = wifeName; | |
115 | + } | |
116 | + | |
117 | + public String getWife_idCard() { | |
118 | + return wife_idCard; | |
119 | + } | |
120 | + | |
121 | + public void setWife_idCard(String wife_idCard) { | |
122 | + this.wife_idCard = wife_idCard; | |
123 | + } | |
124 | + | |
125 | + public String getWifeAge() { | |
126 | + return wifeAge; | |
127 | + } | |
128 | + | |
129 | + public void setWifeAge(String wifeAge) { | |
130 | + this.wifeAge = wifeAge; | |
131 | + } | |
132 | + | |
133 | + public String getWifeBirth() { | |
134 | + return wifeBirth; | |
135 | + } | |
136 | + | |
137 | + public void setWifeBirth(String wifeBirth) { | |
138 | + this.wifeBirth = wifeBirth; | |
139 | + } | |
140 | + | |
141 | + public String getWifeNationCode() { | |
142 | + return wifeNationCode; | |
143 | + } | |
144 | + | |
145 | + public void setWifeNationCode(String wifeNationCode) { | |
146 | + this.wifeNationCode = wifeNationCode; | |
147 | + } | |
148 | + | |
149 | + public String getWifeCultureCode() { | |
150 | + return wifeCultureCode; | |
151 | + } | |
152 | + | |
153 | + public void setWifeCultureCode(String wifeCultureCode) { | |
154 | + this.wifeCultureCode = wifeCultureCode; | |
155 | + } | |
156 | + | |
157 | + public String getWifeRegisteredCode() { | |
158 | + return wifeRegisteredCode; | |
159 | + } | |
160 | + | |
161 | + public void setWifeRegisteredCode(String wifeRegisteredCode) { | |
162 | + this.wifeRegisteredCode = wifeRegisteredCode; | |
163 | + } | |
164 | + | |
165 | + public String getWifeOccupationCode() { | |
166 | + return wifeOccupationCode; | |
167 | + } | |
168 | + | |
169 | + public void setWifeOccupationCode(String wifeOccupationCode) { | |
170 | + this.wifeOccupationCode = wifeOccupationCode; | |
171 | + } | |
172 | + | |
173 | + public String getMotherLandline() { | |
174 | + return motherLandline; | |
175 | + } | |
176 | + | |
177 | + public void setMotherLandline(String motherLandline) { | |
178 | + this.motherLandline = motherLandline; | |
179 | + } | |
180 | + | |
181 | + public String getMotherEmail() { | |
182 | + return motherEmail; | |
183 | + } | |
184 | + | |
185 | + public void setMotherEmail(String motherEmail) { | |
186 | + this.motherEmail = motherEmail; | |
187 | + } | |
188 | + | |
189 | + public String getMotherQQ() { | |
190 | + return motherQQ; | |
191 | + } | |
192 | + | |
193 | + public void setMotherQQ(String motherQQ) { | |
194 | + this.motherQQ = motherQQ; | |
195 | + } | |
196 | + | |
197 | + public String getMotherWechat() { | |
198 | + return motherWechat; | |
199 | + } | |
200 | + | |
201 | + public void setMotherWechat(String motherWechat) { | |
202 | + this.motherWechat = motherWechat; | |
203 | + } | |
204 | + | |
205 | + public String getWifeOccupationCodeContent() { | |
206 | + return wifeOccupationCodeContent; | |
207 | + } | |
208 | + | |
209 | + public void setWifeOccupationCodeContent(String wifeOccupationCodeContent) { | |
210 | + this.wifeOccupationCodeContent = wifeOccupationCodeContent; | |
211 | + } | |
212 | + | |
213 | + public String getWifeTelephone() { | |
214 | + return wifeTelephone; | |
215 | + } | |
216 | + | |
217 | + public void setWifeTelephone(String wifeTelephone) { | |
218 | + this.wifeTelephone = wifeTelephone; | |
219 | + } | |
220 | + | |
221 | + public String getWifeCertificatesCode() { | |
222 | + return wifeCertificatesCode; | |
223 | + } | |
224 | + | |
225 | + public void setWifeCertificatesCode(String wifeCertificatesCode) { | |
226 | + this.wifeCertificatesCode = wifeCertificatesCode; | |
227 | + } | |
228 | + | |
229 | + public String getWife_current_village() { | |
230 | + return wife_current_village; | |
231 | + } | |
232 | + | |
233 | + public void setWife_current_village(String wife_current_village) { | |
234 | + this.wife_current_village = wife_current_village; | |
235 | + } | |
236 | + | |
237 | + public String getWife_regist_village() { | |
238 | + return wife_regist_village; | |
239 | + } | |
240 | + | |
241 | + public void setWife_regist_village(String wife_regist_village) { | |
242 | + this.wife_regist_village = wife_regist_village; | |
243 | + } | |
244 | + | |
245 | + public String getHusbandName() { | |
246 | + return husbandName; | |
247 | + } | |
248 | + | |
249 | + public void setHusbandName(String husbandName) { | |
250 | + this.husbandName = husbandName; | |
251 | + } | |
252 | + | |
253 | + public String getHusbandTelephone() { | |
254 | + return husbandTelephone; | |
255 | + } | |
256 | + | |
257 | + public void setHusbandTelephone(String husbandTelephone) { | |
258 | + this.husbandTelephone = husbandTelephone; | |
259 | + } | |
260 | + | |
261 | + public String getHusbandAge() { | |
262 | + return husbandAge; | |
263 | + } | |
264 | + | |
265 | + public void setHusbandAge(String husbandAge) { | |
266 | + this.husbandAge = husbandAge; | |
267 | + } | |
268 | + | |
269 | + public String getHusbandCode() { | |
270 | + return husbandCode; | |
271 | + } | |
272 | + | |
273 | + public void setHusbandCode(String husbandCode) { | |
274 | + this.husbandCode = husbandCode; | |
275 | + } | |
276 | + | |
277 | + public String getFatherEmail() { | |
278 | + return fatherEmail; | |
279 | + } | |
280 | + | |
281 | + public void setFatherEmail(String fatherEmail) { | |
282 | + this.fatherEmail = fatherEmail; | |
283 | + } | |
284 | + | |
285 | + public String getFatherQQ() { | |
286 | + return fatherQQ; | |
287 | + } | |
288 | + | |
289 | + public void setFatherQQ(String fatherQQ) { | |
290 | + this.fatherQQ = fatherQQ; | |
291 | + } | |
292 | + | |
293 | + public String getFatherWechat() { | |
294 | + return fatherWechat; | |
295 | + } | |
296 | + | |
297 | + public void setFatherWechat(String fatherWechat) { | |
298 | + this.fatherWechat = fatherWechat; | |
299 | + } | |
300 | + | |
301 | + public String getHusband_idCard() { | |
302 | + return husband_idCard; | |
303 | + } | |
304 | + | |
305 | + public void setHusband_idCard(String husband_idCard) { | |
306 | + this.husband_idCard = husband_idCard; | |
307 | + } | |
308 | + | |
309 | + public String getHusbandBirth() { | |
310 | + return husbandBirth; | |
311 | + } | |
312 | + | |
313 | + public void setHusbandBirth(String husbandBirth) { | |
314 | + this.husbandBirth = husbandBirth; | |
315 | + } | |
316 | + | |
317 | + public String getHusbandNationCode() { | |
318 | + return husbandNationCode; | |
319 | + } | |
320 | + | |
321 | + public void setHusbandNationCode(String husbandNationCode) { | |
322 | + this.husbandNationCode = husbandNationCode; | |
323 | + } | |
324 | + | |
325 | + public String getHusbandCultureCode() { | |
326 | + return husbandCultureCode; | |
327 | + } | |
328 | + | |
329 | + public void setHusbandCultureCode(String husbandCultureCode) { | |
330 | + this.husbandCultureCode = husbandCultureCode; | |
331 | + } | |
332 | + | |
333 | + public String getHusbandRegisteredCode() { | |
334 | + return husbandRegisteredCode; | |
335 | + } | |
336 | + | |
337 | + public void setHusbandRegisteredCode(String husbandRegisteredCode) { | |
338 | + this.husbandRegisteredCode = husbandRegisteredCode; | |
339 | + } | |
340 | + | |
341 | + public String getHusbandOccupationCode() { | |
342 | + return husbandOccupationCode; | |
343 | + } | |
344 | + | |
345 | + public void setHusbandOccupationCode(String husbandOccupationCode) { | |
346 | + this.husbandOccupationCode = husbandOccupationCode; | |
347 | + } | |
348 | + | |
349 | + public String getHusbandOccupationCodeContent() { | |
350 | + return husbandOccupationCodeContent; | |
351 | + } | |
352 | + | |
353 | + public void setHusbandOccupationCodeContent(String husbandOccupationCodeContent) { | |
354 | + this.husbandOccupationCodeContent = husbandOccupationCodeContent; | |
355 | + } | |
356 | + | |
357 | + public String getHusbandCertificatesCode() { | |
358 | + return husbandCertificatesCode; | |
359 | + } | |
360 | + | |
361 | + public void setHusbandCertificatesCode(String husbandCertificatesCode) { | |
362 | + this.husbandCertificatesCode = husbandCertificatesCode; | |
363 | + } | |
364 | + | |
365 | + public String getHusband_village() { | |
366 | + return husband_village; | |
367 | + } | |
368 | + | |
369 | + public void setHusband_village(String husband_village) { | |
370 | + this.husband_village = husband_village; | |
371 | + } | |
372 | + | |
373 | + public String getZipCode() { | |
374 | + return zipCode; | |
375 | + } | |
376 | + | |
377 | + public void setZipCode(String zipCode) { | |
378 | + this.zipCode = zipCode; | |
379 | + } | |
380 | + | |
381 | + public String getMarriageTime() { | |
382 | + return marriageTime; | |
383 | + } | |
384 | + | |
385 | + public void setMarriageTime(String marriageTime) { | |
386 | + this.marriageTime = marriageTime; | |
387 | + } | |
388 | + | |
389 | + public String getSubUnitsVillage() { | |
390 | + return subUnitsVillage; | |
391 | + } | |
392 | + | |
393 | + public void setSubUnitsVillage(String subUnitsVillage) { | |
394 | + this.subUnitsVillage = subUnitsVillage; | |
395 | + } | |
396 | + | |
397 | + public String getMarriageTypeCode() { | |
398 | + return marriageTypeCode; | |
399 | + } | |
400 | + | |
401 | + public void setMarriageTypeCode(String marriageTypeCode) { | |
402 | + this.marriageTypeCode = marriageTypeCode; | |
403 | + } | |
404 | + | |
405 | + public String getFloatingCode() { | |
406 | + return floatingCode; | |
407 | + } | |
408 | + | |
409 | + public void setFloatingCode(String floatingCode) { | |
410 | + this.floatingCode = floatingCode; | |
411 | + } | |
412 | + | |
413 | + public String getPeriMarriageEducation() { | |
414 | + return periMarriageEducation; | |
415 | + } | |
416 | + | |
417 | + public void setPeriMarriageEducation(String periMarriageEducation) { | |
418 | + this.periMarriageEducation = periMarriageEducation; | |
419 | + } | |
420 | + | |
421 | + public String getIsPection() { | |
422 | + return isPection; | |
423 | + } | |
424 | + | |
425 | + public void setIsPection(String isPection) { | |
426 | + this.isPection = isPection; | |
427 | + } | |
428 | + | |
429 | + public String getHusbandWorkUnit() { | |
430 | + return husbandWorkUnit; | |
431 | + } | |
432 | + | |
433 | + public void setHusbandWorkUnit(String husbandWorkUnit) { | |
434 | + this.husbandWorkUnit = husbandWorkUnit; | |
435 | + } | |
436 | + | |
437 | + public String getHusbandResidentialCategory() { | |
438 | + return husbandResidentialCategory; | |
439 | + } | |
440 | + | |
441 | + public void setHusbandResidentialCategory(String husbandResidentialCategory) { | |
442 | + this.husbandResidentialCategory = husbandResidentialCategory; | |
443 | + } | |
444 | + | |
445 | + public String getWifeWorkUnit() { | |
446 | + return wifeWorkUnit; | |
447 | + } | |
448 | + | |
449 | + public void setWifeWorkUnit(String wifeWorkUnit) { | |
450 | + this.wifeWorkUnit = wifeWorkUnit; | |
451 | + } | |
452 | + | |
453 | + public String getWifeResidentialCategory() { | |
454 | + return wifeResidentialCategory; | |
455 | + } | |
456 | + | |
457 | + public void setWifeResidentialCategory(String wifeResidentialCategory) { | |
458 | + this.wifeResidentialCategory = wifeResidentialCategory; | |
459 | + } | |
460 | + | |
461 | + public String getHusbandAddressVillage() { | |
462 | + return husbandAddressVillage; | |
463 | + } | |
464 | + | |
465 | + public void setHusbandAddressVillage(String husbandAddressVillage) { | |
466 | + this.husbandAddressVillage = husbandAddressVillage; | |
467 | + } | |
468 | + | |
469 | + public String getInformedConsent() { | |
470 | + return informedConsent; | |
471 | + } | |
472 | + | |
473 | + public void setInformedConsent(String informedConsent) { | |
474 | + this.informedConsent = informedConsent; | |
475 | + } | |
7 | 476 | } |