Commit facac59d38ff670135b658674af7242fc42ec5ee

Authored by wtt
1 parent 08e1f120a8

update

Showing 1 changed file with 34 additions and 1 deletions

platform-operate-api/src/main/java/com/lyms/platform/operate/web/result/DiagnoseItemResult.java View file @ facac59
... ... @@ -24,6 +24,13 @@
24 24 //高危id
25 25 private List<Map<String, String>> riskIds;
26 26  
  27 + /*儿童自动诊断新增字段*/
  28 + //畸形详情,在转换成MaternalDeliverModel.Baby判断使用
  29 + private Map<String,Object> tejx;
  30 + //母亲存在的高危因素
  31 + private List<String> riskFactorIds;
  32 + //20200827新增儿童的,“高危儿详情项”
  33 + private List<String> riskBabyInfoIds;
27 34 @Override
28 35 public DiagnoseItemResult convertToResult(DiagnoseItemModel model) {
29 36 setValueOne(model.getValueOne());
30 37  
... ... @@ -33,8 +40,34 @@
33 40 setValueFive(model.getValueFive());
34 41 setValueSix(model.getValueSix());
35 42 setValueSeven(model.getValueSeven());
36   -
  43 + setTejx(model.getTejx());
  44 + setRiskFactorIds(model.getRiskFactorIds());
  45 + setRiskBabyInfoIds(model.getRiskBabyInfoIds());
37 46 return this;
  47 + }
  48 +
  49 + public Map <String, Object> getTejx() {
  50 + return tejx;
  51 + }
  52 +
  53 + public void setTejx(Map <String, Object> tejx) {
  54 + this.tejx = tejx;
  55 + }
  56 +
  57 + public List <String> getRiskFactorIds() {
  58 + return riskFactorIds;
  59 + }
  60 +
  61 + public void setRiskFactorIds(List <String> riskFactorIds) {
  62 + this.riskFactorIds = riskFactorIds;
  63 + }
  64 +
  65 + public List <String> getRiskBabyInfoIds() {
  66 + return riskBabyInfoIds;
  67 + }
  68 +
  69 + public void setRiskBabyInfoIds(List <String> riskBabyInfoIds) {
  70 + this.riskBabyInfoIds = riskBabyInfoIds;
38 71 }
39 72  
40 73 public String getValueSix() {