admin
2020-05-20 98b1a0affd69bbe63223c21fdd2c404e8bedfccb
fanli/src/main/java/com/yeshi/fanli/entity/redpack/RedPackGiveRecord.java
@@ -6,13 +6,15 @@
import org.yeshi.utils.mybatis.Column;
import org.yeshi.utils.mybatis.Table;
import com.google.gson.annotations.Expose;
/**
 * 红包赠送记录
 * 
 * @author Administrator
 *
 */
@Table("yeshi_red_pack_give_record")
@Table("yeshi_ec_red_pack_give_record")
public class RedPackGiveRecord {
   // 未领取
@@ -31,18 +33,22 @@
   @Column(name = "rpgr_give_uid")
   private Long giveUid;
   // 赠送时间
   @Expose
   @Column(name = "rpgr_give_time")
   private Date giveTime;
   // 赠送结束时间
   @Column(name = "rpgr_end_time")
   private Date endTime;
   // 领取uid
   @Expose
   @Column(name = "rpgr_receive_uid")
   private Long receiveUid;
   // 领取时间
   @Expose
   @Column(name = "rpgr_receive_time")
   private Date receiveTime;
   // 状态:0初始 1已领取 2已退回
   @Expose
   @Column(name = "rpgr_state")
   private Integer state;