| | |
| | | @Column(name = "uie_auto_extract")
|
| | | private Boolean autoExtract;
|
| | |
|
| | | //微信自动提现关闭日期
|
| | | @Column(name = "uie_close_time_extract")
|
| | | private Date closeTimeExtract;
|
| | | |
| | | // 用户标识
|
| | | @Column(name = "uie_mark")
|
| | | private String mark;
|
| | | |
| | | // 用户最近活跃时间
|
| | | @Column(name = "uie_active_time")
|
| | | private Date activeTime;
|
| | |
|
| | | // 创建时间
|
| | | @Column(name = "uie_create_time")
|
| | |
| | | this.autoExtract = autoExtract;
|
| | | }
|
| | |
|
| | | public Date getCloseTimeExtract() {
|
| | | return closeTimeExtract;
|
| | | }
|
| | |
|
| | | public void setCloseTimeExtract(Date closeTimeExtract) {
|
| | | this.closeTimeExtract = closeTimeExtract;
|
| | | }
|
| | |
|
| | | public String getMark() {
|
| | | return mark;
|
| | | }
|
| | |
|
| | | public void setMark(String mark) {
|
| | | this.mark = mark;
|
| | | }
|
| | |
|
| | | public Date getActiveTime() {
|
| | | return activeTime;
|
| | | }
|
| | |
|
| | | public void setActiveTime(Date activeTime) {
|
| | | this.activeTime = activeTime;
|
| | | }
|
| | | |
| | | }
|