| | |
| | | @Column(name = "uie_gold_coin")
|
| | | private Integer goldCoin;
|
| | |
|
| | | //是否微信自動提現
|
| | | @Column(name = "uie_auto_extract")
|
| | | private Boolean autoExtract;
|
| | | |
| | | //微信自动提现关闭日期
|
| | | @Column(name = "uie_close_time_extract")
|
| | | private Date closeTimeExtract;
|
| | | |
| | | // 创建时间
|
| | | @Column(name = "uie_create_time")
|
| | | private Date createTime;
|
| | |
| | | public void setGoldCoin(Integer goldCoin) {
|
| | | this.goldCoin = goldCoin;
|
| | | }
|
| | | |
| | |
|
| | | public Boolean getAutoExtract() {
|
| | | return autoExtract;
|
| | | }
|
| | |
|
| | | public void setAutoExtract(Boolean autoExtract) {
|
| | | this.autoExtract = autoExtract;
|
| | | }
|
| | |
|
| | | public Date getCloseTimeExtract() {
|
| | | return closeTimeExtract;
|
| | | }
|
| | |
|
| | | public void setCloseTimeExtract(Date closeTimeExtract) {
|
| | | this.closeTimeExtract = closeTimeExtract;
|
| | | }
|
| | |
|
| | | }
|