Commit c197ee08385523b6f7ea7087c43acdabf88e18de

Authored by liquanyu
1 parent ef1bc0895f

update code

Showing 2 changed files with 11 additions and 0 deletions

platform-operate-api/src/main/java/com/lyms/platform/operate/web/facade/BookbuildingFacade.java View file @ c197ee0
... ... @@ -1043,6 +1043,7 @@
1043 1043 patient.setVcCardNo(yunRequest.getVcCardNo());
1044 1044 patient.setHospitalId(yunRequest.getHospitalId());
1045 1045 patient.setYn(YnEnums.YES.getId());
  1046 + patient.setSendCoupon(yunRequest.getSendCoupon());
1046 1047  
1047 1048 return patient;
1048 1049 }
platform-operate-api/src/main/java/com/lyms/platform/operate/web/request/YunBookbuildingAddRequest.java View file @ c197ee0
... ... @@ -164,6 +164,16 @@
164 164  
165 165 private Integer couponType;
166 166  
  167 + private Boolean sendCoupon;
  168 +
  169 + public Boolean getSendCoupon() {
  170 + return sendCoupon;
  171 + }
  172 +
  173 + public void setSendCoupon(Boolean sendCoupon) {
  174 + this.sendCoupon = sendCoupon;
  175 + }
  176 +
167 177 public String getCouponCode() {
168 178 return couponCode;
169 179 }