Commit 21afd6d22791083acec20edbdc0b45902f93ff53
1 parent
b21aa46c87
Exists in
master
and in
4 other branches
孤独症参数格式
Showing 1 changed file with 96 additions and 0 deletions
platform-dal/src/main/java/com/lyms/platform/pojo/BabyAutismPrimaryScreening.java
View file @
21afd6d
1 | 1 | package com.lyms.platform.pojo; |
2 | 2 | |
3 | +import com.fasterxml.jackson.annotation.JsonProperty; | |
3 | 4 | import com.lyms.platform.common.result.BaseModel; |
4 | 5 | import org.apache.commons.lang.StringUtils; |
5 | 6 | |
6 | 7 | |
... | ... | @@ -147,11 +148,53 @@ |
147 | 148 | */ |
148 | 149 | private String warningSignstring; |
149 | 150 | |
151 | + | |
152 | + private String checkHospital; | |
153 | + | |
154 | + public String getCheckHospital() { | |
155 | + return checkHospital; | |
156 | + } | |
157 | + | |
158 | + public void setCheckHospital(String checkHospital) { | |
159 | + this.checkHospital = checkHospital; | |
160 | + } | |
161 | + | |
150 | 162 | /** |
151 | 163 | * 语言功能和社会交往能力询问 |
152 | 164 | */ |
153 | 165 | private String languageSocialstirng; |
154 | 166 | |
167 | + private String displayState; | |
168 | + | |
169 | + private String errormsg; | |
170 | + | |
171 | + @JsonProperty("doctor") | |
172 | + private DoctorDTO doctor; | |
173 | + | |
174 | + public DoctorDTO getDoctor() { | |
175 | + return doctor; | |
176 | + } | |
177 | + | |
178 | + public void setDoctor(DoctorDTO doctor) { | |
179 | + this.doctor = doctor; | |
180 | + } | |
181 | + | |
182 | + public String getDisplayState() { | |
183 | + return displayState; | |
184 | + } | |
185 | + | |
186 | + public void setDisplayState(String displayState) { | |
187 | + this.displayState = displayState; | |
188 | + } | |
189 | + | |
190 | + public String getErrormsg() { | |
191 | + return errormsg; | |
192 | + } | |
193 | + | |
194 | + public void setErrormsg(String errormsg) { | |
195 | + this.errormsg = errormsg; | |
196 | + } | |
197 | + | |
155 | 198 | public String getWarningSignstring() { |
156 | 199 | return warningSignstring; |
157 | 200 | } |
... | ... | @@ -463,6 +506,59 @@ |
463 | 506 | |
464 | 507 | public void setPreliminaryScreeningResults(String preliminaryScreeningResults) { |
465 | 508 | this.preliminaryScreeningResults = preliminaryScreeningResults; |
509 | + } | |
510 | + | |
511 | + public static class DoctorDTO { | |
512 | + @JsonProperty("name") | |
513 | + private String name; | |
514 | + @JsonProperty("id") | |
515 | + private Integer idX; | |
516 | + @JsonProperty("label") | |
517 | + private String label; | |
518 | + @JsonProperty("value") | |
519 | + private Integer value; | |
520 | + @JsonProperty("search") | |
521 | + private String search; | |
522 | + | |
523 | + public String getName() { | |
524 | + return name; | |
525 | + } | |
526 | + | |
527 | + public void setName(String name) { | |
528 | + this.name = name; | |
529 | + } | |
530 | + | |
531 | + public Integer getIdX() { | |
532 | + return idX; | |
533 | + } | |
534 | + | |
535 | + public void setIdX(Integer idX) { | |
536 | + this.idX = idX; | |
537 | + } | |
538 | + | |
539 | + public String getLabel() { | |
540 | + return label; | |
541 | + } | |
542 | + | |
543 | + public void setLabel(String label) { | |
544 | + this.label = label; | |
545 | + } | |
546 | + | |
547 | + public Integer getValue() { | |
548 | + return value; | |
549 | + } | |
550 | + | |
551 | + public void setValue(Integer value) { | |
552 | + this.value = value; | |
553 | + } | |
554 | + | |
555 | + public String getSearch() { | |
556 | + return search; | |
557 | + } | |
558 | + | |
559 | + public void setSearch(String search) { | |
560 | + this.search = search; | |
561 | + } | |
466 | 562 | } |
467 | 563 | } |