Commit 7117c56c39885982d23fed6619ee2d74d327ac91

Authored by shiyang
1 parent b218af3d32

update

Showing 1 changed file with 14 additions and 0 deletions

platform-operate-api/src/main/java/com/lyms/platform/operate/web/request/BabyNutritionRequest.java View file @ 7117c56
... ... @@ -138,6 +138,18 @@
138 138 //秦皇岛膳食定制
139 139 private List<Map<String,Integer>> diets;
140 140  
  141 + /**
  142 + * 是否打印过报告 1:已打印 2:未已打印
  143 + */
  144 + private Integer isPrint ;
  145 +
  146 + public Integer getIsPrint() {
  147 + return isPrint;
  148 + }
  149 +
  150 + public void setIsPrint(Integer isPrint) {
  151 + this.isPrint = isPrint;
  152 + }
141 153 public List<Map<String,Integer>> getDiets() {
142 154 return diets;
143 155 }
... ... @@ -203,6 +215,8 @@
203 215 model.setRemark(remark);
204 216  
205 217 model.setDiets(diets);
  218 +
  219 + model.setIsPrint(isPrint);
206 220 return model;
207 221 }
208 222