Commit 6a9049d5c8d79ad2bf182d788ee5de12097b00aa
1 parent
cbf7f61906
Exists in
master
and in
6 other branches
update code
Showing 2 changed files with 11 additions and 1 deletions
platform-operate-api/src/main/java/com/lyms/platform/operate/web/facade/SieveRecordFacade.java
View file @
6a9049d
... | ... | @@ -114,7 +114,7 @@ |
114 | 114 | private SieveRecordModel getPatientsData(YunBookbuildingAddRequest yunRequest) { |
115 | 115 | SieveRecordModel patient = new SieveRecordModel(); |
116 | 116 | |
117 | - patient.setPatientId(yunRequest.getId()); | |
117 | + patient.setPatientId(yunRequest.getPatientdId()); | |
118 | 118 | |
119 | 119 | patient.setMensStartDay(yunRequest.getMensStartDay()); |
120 | 120 |
platform-operate-api/src/main/java/com/lyms/platform/operate/web/request/YunBookbuildingAddRequest.java
View file @
6a9049d
... | ... | @@ -190,6 +190,16 @@ |
190 | 190 | |
191 | 191 | private Boolean sendCoupon; |
192 | 192 | |
193 | + private String patientdId; | |
194 | + | |
195 | + public String getPatientdId() { | |
196 | + return patientdId; | |
197 | + } | |
198 | + | |
199 | + public void setPatientdId(String patientdId) { | |
200 | + this.patientdId = patientdId; | |
201 | + } | |
202 | + | |
193 | 203 | public Integer getDueStatus() { |
194 | 204 | return dueStatus; |
195 | 205 | } |