Commit 38c888739afce331d960df253b647a10c845dc77

Authored by yangfei
1 parent a798342300
Exists in master and in 1 other branch dev

自动生成追访信息

Showing 2 changed files with 6 additions and 6 deletions

platform-dal/src/main/java/com/lyms/platform/pojo/AntExChuModel.java View file @ 38c8887
... ... @@ -274,7 +274,7 @@
274 274 //游离甲状腺素(FT4)
275 275 public String freeThy;
276 276 //促甲状腺激素(TSH)
277   - public String thyStim;
  277 + public Map<String,Object> thyStim;
278 278 //抗甲状腺球蛋白抗体(TGA)
279 279 public String antGlan;
280 280 //抗甲状腺微粒体抗体(TMA)
281 281  
... ... @@ -346,11 +346,11 @@
346 346 this.freeThy = freeThy;
347 347 }
348 348  
349   - public String getThyStim() {
  349 + public Map<String, Object> getThyStim() {
350 350 return thyStim;
351 351 }
352 352  
353   - public void setThyStim(String thyStim) {
  353 + public void setThyStim(Map<String, Object> thyStim) {
354 354 this.thyStim = thyStim;
355 355 }
356 356  
platform-operate-api/src/main/java/com/lyms/platform/operate/web/request/AntExcAddRequest.java View file @ 38c8887
... ... @@ -400,7 +400,7 @@
400 400 //游离甲状腺素(FT4)
401 401 public String freeThy;
402 402 //促甲状腺激素(TSH)
403   - public String thyStim;
  403 + public Map thyStim;
404 404 //抗甲状腺球蛋白抗体(TGA)
405 405 public String antGlan;
406 406 //抗甲状腺微粒体抗体(TMA)
407 407  
... ... @@ -487,11 +487,11 @@
487 487 this.freeThy = freeThy;
488 488 }
489 489  
490   - public String getThyStim() {
  490 + public Map getThyStim() {
491 491 return thyStim;
492 492 }
493 493  
494   - public void setThyStim(String thyStim) {
  494 + public void setThyStim(Map thyStim) {
495 495 this.thyStim = thyStim;
496 496 }
497 497