Commit 5c9ca5dd4ba13a8ab96fc0638ca4163eba78d774

Authored by jiangjiazhi
1 parent e30599c227

删除最后一次顿号

Showing 1 changed file with 13 additions and 1 deletions

platform-operate-api/src/main/java/com/lyms/platform/operate/web/result/AntexChuResult.java View file @ 5c9ca5d
... ... @@ -230,12 +230,23 @@
230 230 private int hasRefer;
231 231 //是否有产筛
232 232 private int hasSieve;
233   -
  233 + /**
  234 + * 其他的诊断意见
  235 + */
  236 + private String diagnosisOther;
234 237 //自然流产
235 238 private Integer abortionZR;
236 239 //人工流产
237 240 private Integer abortionRG;
238 241  
  242 + public String getDiagnosisOther() {
  243 + return diagnosisOther;
  244 + }
  245 +
  246 + public void setDiagnosisOther(String diagnosisOther) {
  247 + this.diagnosisOther = diagnosisOther;
  248 + }
  249 +
239 250 public Integer getAbortionZR() {
240 251 return abortionZR;
241 252 }
... ... @@ -953,6 +964,7 @@
953 964  
954 965 public AntexChuResult convertToResult(AntExChuModel antExChuModel) {
955 966 if (null != antExChuModel) {
  967 + setDiagnosisOther(antExChuModel.getDiagnosisOther());
956 968 setBarCode(antExChuModel.getBarCode());
957 969 setId(antExChuModel.getId());
958 970 setParentId(antExChuModel.getParentId());