Commit 476fc81de3f041a484eb53395b8b573546e08443
1 parent
e32fd112aa
Exists in
master
and in
1 other branch
宫颈癌
Showing 1 changed file with 52 additions and 3 deletions
platform-dal/src/main/java/com/lyms/platform/pojo/CervicalCancerModel.java
View file @
476fc81
| ... | ... | @@ -18,6 +18,21 @@ |
| 18 | 18 | |
| 19 | 19 | private static final long serialVersionUID = SerialIdEnum.CervicalCancerModel.getCid(); |
| 20 | 20 | /** |
| 21 | + * 遵化新增 宫颈癌筛查 字段 | |
| 22 | + * | |
| 23 | + * @Author: 武涛涛 | |
| 24 | + * @Date: 2020/9/11 15:43 | |
| 25 | + */ | |
| 26 | + //HPV检查 正常"zc" 异常"yc" | |
| 27 | + private String hpvjc; | |
| 28 | + private String hpvjcContent; | |
| 29 | + //TCT检查 | |
| 30 | + private String tctjc; | |
| 31 | + private String tctjcContent; | |
| 32 | + | |
| 33 | + /*end*/ | |
| 34 | + | |
| 35 | + /** | |
| 21 | 36 | * 主键 |
| 22 | 37 | */ |
| 23 | 38 | private String id; |
| ... | ... | @@ -54,7 +69,7 @@ |
| 54 | 69 | /** |
| 55 | 70 | * 末次月经 |
| 56 | 71 | */ |
| 57 | - private Date lastMenstrual; | |
| 72 | + private Date lastMenstrual; | |
| 58 | 73 | |
| 59 | 74 | /** |
| 60 | 75 | * 以往是否接受过宫颈癌检查 1/三年内 2/三年以上 3/否 |
| 61 | 76 | |
| ... | ... | @@ -69,13 +84,47 @@ |
| 69 | 84 | /** |
| 70 | 85 | * 表单数据,前端同事自定义 |
| 71 | 86 | */ |
| 72 | - private Map<String, Object> formData; | |
| 87 | + private Map <String, Object> formData; | |
| 73 | 88 | |
| 74 | 89 | /** |
| 75 | 90 | * 创建人id |
| 76 | 91 | */ |
| 77 | 92 | private String createUser; |
| 78 | 93 | |
| 94 | + | |
| 95 | + | |
| 96 | + public String getHpvjc() { | |
| 97 | + return hpvjc; | |
| 98 | + } | |
| 99 | + | |
| 100 | + public void setHpvjc(String hpvjc) { | |
| 101 | + this.hpvjc = hpvjc; | |
| 102 | + } | |
| 103 | + | |
| 104 | + public String getHpvjcContent() { | |
| 105 | + return hpvjcContent; | |
| 106 | + } | |
| 107 | + | |
| 108 | + public void setHpvjcContent(String hpvjcContent) { | |
| 109 | + this.hpvjcContent = hpvjcContent; | |
| 110 | + } | |
| 111 | + | |
| 112 | + public String getTctjc() { | |
| 113 | + return tctjc; | |
| 114 | + } | |
| 115 | + | |
| 116 | + public void setTctjc(String tctjc) { | |
| 117 | + this.tctjc = tctjc; | |
| 118 | + } | |
| 119 | + | |
| 120 | + public String getTctjcContent() { | |
| 121 | + return tctjcContent; | |
| 122 | + } | |
| 123 | + | |
| 124 | + public void setTctjcContent(String tctjcContent) { | |
| 125 | + this.tctjcContent = tctjcContent; | |
| 126 | + } | |
| 127 | + | |
| 79 | 128 | private Date created; |
| 80 | 129 | |
| 81 | 130 | private String hospitalId; |
| ... | ... | @@ -231,7 +280,7 @@ |
| 231 | 280 | return formData; |
| 232 | 281 | } |
| 233 | 282 | |
| 234 | - public void setFormData(Map<String, Object> formData) { | |
| 283 | + public void setFormData(Map <String, Object> formData) { | |
| 235 | 284 | this.formData = formData; |
| 236 | 285 | } |
| 237 | 286 | } |