Commit ef1bc0895f8e9fb4f940b716052976ac82c8027e

Authored by litao
1 parent 778a19d1d5

优惠券老数据处理

Showing 1 changed file with 3 additions and 3 deletions

platform-dal/src/main/java/com/lyms/platform/pojo/Patients.java View file @ ef1bc08
... ... @@ -248,7 +248,7 @@
248 248 private Integer isAutoFm;
249 249  
250 250 // 是否发放过优惠券
251   - private boolean isSendCoupon;
  251 + private Boolean isSendCoupon;
252 252  
253 253 public Integer getIsAutoFm() {
254 254 return isAutoFm;
255 255  
... ... @@ -1058,11 +1058,11 @@
1058 1058 this.streetRegisterId = streetRegisterId;
1059 1059 }
1060 1060  
1061   - public boolean isSendCoupon() {
  1061 + public Boolean isSendCoupon() {
1062 1062 return isSendCoupon;
1063 1063 }
1064 1064  
1065   - public void setSendCoupon(boolean sendCoupon) {
  1065 + public void setSendCoupon(Boolean sendCoupon) {
1066 1066 isSendCoupon = sendCoupon;
1067 1067 }
1068 1068