Commit bafe76a3938a0850fd11e33ae419553cc6b7ccf6
1 parent
e030523b38
Exists in
master
and in
6 other branches
添加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