admin
2020-11-28 dc5be7d38446f70e6ff86df311119c32b41fe7f8
fanli/src/main/java/com/yeshi/fanli/entity/bus/user/UserSystemCouponRecord.java
@@ -13,14 +13,18 @@
@Table("yeshi_ec_user_system_coupon_record")
public class UserSystemCouponRecord {
   // 状态: 匹配中0   规则不匹配1   退款退回4     免单中2  使用成功3
   // 状态: 匹配中0    规则不匹配1   退款退回4  匹配超时退回5   免单中2  使用成功3
   public final static int STATE_WAIT= 0;
   public final static int STATE_FAIL_RULE =1;
   public final static int STATE_FAIL_DRAWBACK = 4;
   public final static int STATE_WAIT_TIME_OUT = 5;
   
   public final static int STATE_FREE_ON = 2;
   public final static int STATE_SUCCESS = 3;
      
   public final static int STATE_GIVE_ON = 11; // 增送中
   
   @Column(name = "ucr_id")
   private Long id;
@@ -31,7 +35,7 @@
   // 商品来源
   @Column(name = "ucr_good_source")
   private int goodSource;
   private Integer goodSource;
   // 用户券
   @Column(name = "ucr_user_coupon_id")
@@ -73,11 +77,11 @@
      this.goodId = goodId;
   }
   public int getGoodSource() {
   public Integer getGoodSource() {
      return goodSource;
   }
   public void setGoodSource(int goodSource) {
   public void setGoodSource(Integer goodSource) {
      this.goodSource = goodSource;
   }