Commit 4b145d0a38010cd7d5f595d925304f4c30ed1b40

Authored by shiyang
1 parent 6b46c5addd

update

Showing 2 changed files with 13 additions and 0 deletions

platform-operate-api/src/main/java/com/lyms/platform/operate/web/facade/BabyCheckFacade.java View file @ 4b145d0
... ... @@ -574,6 +574,7 @@
574 574  
575 575 model.setZhipJoint(request.getZhipJoint());
576 576 model.setYhipJoint(request.getYhipJoint());
  577 + model.setTcmGuide(request.getTcmGuide());
577 578  
578 579 return model;
579 580 }
platform-operate-api/src/main/java/com/lyms/platform/operate/web/request/BabyCheckRequest.java View file @ 4b145d0
... ... @@ -494,10 +494,22 @@
494 494 */
495 495 private String configItemId;
496 496  
  497 + /**
  498 + * 儿保检查 中医指导
  499 + */
  500 + private String tcmGuide;
497 501  
498 502 //儿童疾病
499 503 private List<String> diseases;
500 504  
  505 +
  506 + public String getTcmGuide() {
  507 + return tcmGuide;
  508 + }
  509 +
  510 + public void setTcmGuide(String tcmGuide) {
  511 + this.tcmGuide = tcmGuide;
  512 + }
501 513  
502 514 public String getZhipJoint() {
503 515 return zhipJoint;