Commit a5335eb5719d8ac83f1e09376f92359682113f58

Authored by jiangjiazhi
1 parent 092100d051

增加是否通知

Showing 2 changed files with 11 additions and 1 deletions

platform-operate-api/src/main/java/com/lyms/platform/operate/web/facade/AntenatalExaminationFacade.java View file @ a5335eb
... ... @@ -392,7 +392,7 @@
392 392 }
393 393  
394 394 antexListResult.convertToResult(list, patients, antExChuModel);
395   -
  395 + antexListResult.setIsSieve(cap(patients.getLastMenses(),patients.getId()));
396 396 antexListResult.setRiskFactor(data);
397 397 return new BaseObjectResponse().setErrorcode(ErrorCodeConstants.SUCCESS).setErrormsg("成功").setData(antexListResult);
398 398 }
platform-operate-api/src/main/java/com/lyms/platform/operate/web/result/AntexListResult.java View file @ a5335eb
... ... @@ -41,7 +41,17 @@
41 41  
42 42 private String cardNo;
43 43 private String vcCardNo;
  44 + private String isSieve;
44 45 //<!---------基本信息----------->
  46 +
  47 +
  48 + public String getIsSieve() {
  49 + return isSieve;
  50 + }
  51 +
  52 + public void setIsSieve(String isSieve) {
  53 + this.isSieve = isSieve;
  54 + }
45 55  
46 56 public String getCardNo() {
47 57 return cardNo;