admin
2020-04-13 dd5b15229cb15459fa7c31ccea77dac28cbfafbd
fanli/src/main/java/com/yeshi/fanli/entity/bus/user/HongBaoV2.java
@@ -25,27 +25,26 @@
   public final static int STATE_KELINGQU = 2;
   public final static int STATE_YILINGQU = 3;
   public final static int STATE_SHIXIAO = 4;
   // 5-部分失效(返回客户端显示用,不用作逻辑处理)
   public final static int STATE_BUFENSHIXIAO = 5;
   // 自购红包  老版 2属于自购
   // 自购红包 老版 2属于自购
   public final static int TYPE_ZIGOU = 1;
   // 活动红包
   public final static int TYPE_HUODONG = 3;
   // 新人红包
   public final static int TYPE_XINREN = 4;
   // 使用券红包
   public final static int TYPE_COUPON = 10;
   public final static int TYPE_YAOQING = 5;
   // 一级分销红包
   public final static int TYPE_YIJI = 6;
   // 二级分销红包
   public final static int TYPE_ERJI = 7;
   // 分享商品得来的红包
   public final static int TYPE_SHARE_GOODS = 20;
   // 一级分享赚分销红包
@@ -53,6 +52,16 @@
   // 二级分享赚分销红包
   public final static int TYPE_SHARE_ERJI = 22;
   // 金币兑换红包
   public final static int TYPE_EXCHANGE = 30;
   // 饿了么红包
   public final static int TYPE_ELME = 25;
   // 超级会员
   public final static int RANK_VIP = 100;
   public final static int RANK_VIP_PRE_3 = 30;// 超级会员第一阶段
   public final static int RANK_VIP_PRE_7 = 70;// 超级会员第二阶段
   @Column(name = "hb_id")
   private Long id;
@@ -104,6 +113,10 @@
   // 更新时间
   @Column(name = "cog_update_time")
   private Date updateTime;
   // 订单类型
   @Column(name = "cog_order_type")
   private Integer orderType;
   public HongBaoV2() {
@@ -216,4 +229,12 @@
   public void setUpdateTime(Date updateTime) {
      this.updateTime = updateTime;
   }
   public Integer getOrderType() {
      return orderType;
   }
   public void setOrderType(Integer orderType) {
      this.orderType = orderType;
   }
}