| | |
| | | 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;
|
| | | // 一级分享赚分销红包
|
| | |
| | |
|
| | | // 金币兑换红包
|
| | | public final static int TYPE_EXCHANGE = 30;
|
| | | |
| | | //饿了么红包
|
| | | public final static int TYPE_ELME=25;
|
| | |
|
| | | // 饿了么红包
|
| | | 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;
|
| | |
| | | // 更新时间
|
| | | @Column(name = "cog_update_time")
|
| | | private Date updateTime;
|
| | |
|
| | | // 订单类型
|
| | | @Column(name = "cog_order_type")
|
| | | private Integer orderType;
|
| | |
|
| | | public HongBaoV2() {
|
| | |
|
| | |
| | | public void setUpdateTime(Date updateTime) {
|
| | | this.updateTime = updateTime;
|
| | | }
|
| | |
|
| | | public Integer getOrderType() {
|
| | | return orderType;
|
| | | }
|
| | |
|
| | | public void setOrderType(Integer orderType) {
|
| | | this.orderType = orderType;
|
| | | }
|
| | | }
|