| | |
| | | import org.yeshi.utils.mybatis.Column;
|
| | | import org.yeshi.utils.mybatis.Table;
|
| | |
|
| | | import com.google.gson.annotations.Expose;
|
| | |
|
| | | /**
|
| | | * 红包赠送记录
|
| | | *
|
| | |
| | | @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;
|
| | |
|