Commit 1326ffea6cb5c0ec2875ccc6423bfafcb7a78ffb

Authored by zhangchao
1 parent 1af226727f
Exists in dev

#fix:优化临时血糖管理

Showing 1 changed file with 10 additions and 0 deletions

platform-dal/src/main/java/com/lyms/platform/pojo/TemporaryBloodSugar.java View file @ 1326ffe
... ... @@ -37,7 +37,9 @@
37 37  
38 38 private String bloodSugar;
39 39  
  40 + private Integer sugarType;
40 41  
  42 +
41 43 // private Map<String, String> dayWeights;
42 44  
43 45 private String hospitalId;
... ... @@ -183,6 +185,14 @@
183 185  
184 186 public void setYn(Integer yn) {
185 187 this.yn = yn;
  188 + }
  189 +
  190 + public Integer getSugarType() {
  191 + return sugarType;
  192 + }
  193 +
  194 + public void setSugarType(Integer sugarType) {
  195 + this.sugarType = sugarType;
186 196 }
187 197 }