Commit bafe76a3938a0850fd11e33ae419553cc6b7ccf6

Authored by dongqin
1 parent e030523b38

添加ID

Showing 2 changed files with 12 additions and 1 deletions

platform-dal/src/main/java/com/lyms/platform/pojo/MatdeliverFollowPushModel.java View file @ bafe76a
... ... @@ -78,7 +78,17 @@
78 78 */
79 79 private String createDoctor;
80 80  
81   - private Date createTime;
  81 + private String hospitalId;
  82 +
  83 + public String getHospitalId() {
  84 + return hospitalId;
  85 + }
  86 +
  87 + public void setHospitalId(String hospitalId) {
  88 + this.hospitalId = hospitalId;
  89 + }
  90 +
  91 + private Date createTime;
82 92  
83 93 private Date updateTime;
84 94  
platform-operate-api/src/main/java/com/lyms/platform/operate/web/facade/MatdeliverFollowFacade.java View file @ bafe76a
... ... @@ -721,6 +721,7 @@
721 721 pushModel.setPhone(patients.getPhone());
722 722 pushModel.setCreateDoctor(userId.toString());
723 723 pushModel.setYn(YnEnums.YES.getId());
  724 + pushModel.setHospitalId(hospitalId);
724 725 mongoTemplate.insert(pushModel);
725 726 }
726 727 }