| | |
| | | package com.yeshi.fanli.entity.bus.user;
|
| | |
|
| | | import java.math.BigDecimal;
|
| | |
|
| | | import javax.persistence.Column;
|
| | | import javax.persistence.Entity;
|
| | | import javax.persistence.FetchType;
|
| | | import javax.persistence.GeneratedValue;
|
| | | import javax.persistence.GenerationType;
|
| | | import javax.persistence.Id;
|
| | | import javax.persistence.JoinColumn;
|
| | | import javax.persistence.ManyToOne;
|
| | | import javax.persistence.Table;
|
| | |
|
| | | /**
|
| | | * 每日的提现记录
|
| | | * @author cxx
|
| | | *
|
| | | * @date 2018年1月29日
|
| | | */
|
| | | @Entity
|
| | | @Table(name="yeshi_ec_extract_record")
|
| | | @org.yeshi.utils.mybatis.Table("yeshi_ec_extract_record")
|
| | | public class ExtractRecord {
|
| | | |
| | | @org.yeshi.utils.mybatis.Column(name="id")
|
| | | @Id
|
| | | @GeneratedValue(strategy=GenerationType.AUTO)
|
| | | @Column(name="`id`")
|
| | | private Long id;
|
| | | |
| | | @org.yeshi.utils.mybatis.Column(name="uid")
|
| | | @ManyToOne(fetch = FetchType.EAGER)
|
| | | @JoinColumn(name="uid")
|
| | | private UserInfo userInfo;
|
| | | |
| | | @org.yeshi.utils.mybatis.Column(name="count")
|
| | | private Integer count;
|
| | |
|
| | | @org.yeshi.utils.mybatis.Column(name="money")
|
| | | private BigDecimal money;
|
| | | |
| | | @org.yeshi.utils.mybatis.Column(name="createTime")
|
| | | private Long createTime;
|
| | | |
| | | public Long getId() {
|
| | | return id;
|
| | | }
|
| | |
|
| | | public void setId(Long id) {
|
| | | this.id = id;
|
| | | }
|
| | |
|
| | | public UserInfo getUserInfo() {
|
| | | return userInfo;
|
| | | }
|
| | |
|
| | | public void setUserInfo(UserInfo userInfo) {
|
| | | this.userInfo = userInfo;
|
| | | }
|
| | |
|
| | | public Integer getCount() {
|
| | | return count;
|
| | | }
|
| | |
|
| | | public void setCount(Integer count) {
|
| | | this.count = count;
|
| | | }
|
| | |
|
| | | public BigDecimal getMoney() {
|
| | | return money;
|
| | | }
|
| | |
|
| | | public void setMoney(BigDecimal money) {
|
| | | this.money = money;
|
| | | }
|
| | |
|
| | | public Long getCreateTime() {
|
| | | return createTime;
|
| | | }
|
| | |
|
| | | public void setCreateTime(Long createTime) {
|
| | | this.createTime = createTime;
|
| | | }
|
| | | |
| | | }
|
| | | package com.yeshi.fanli.entity.bus.user; |
| | | |
| | | import java.math.BigDecimal; |
| | | |
| | | import org.yeshi.utils.generater.mybatis.Column; |
| | | import org.yeshi.utils.generater.mybatis.Table; |
| | | /** |
| | | * 每日的提现记录 |
| | | * @author cxx |
| | | * |
| | | * @date 2018年1月29日 |
| | | */ |
| | | @Table("yeshi_ec_extract_record") |
| | | public class ExtractRecord { |
| | | |
| | | @Column(name="id") |
| | | private Long id; |
| | | |
| | | @Column(name="uid") |
| | | private UserInfo userInfo; |
| | | |
| | | @Column(name="count") |
| | | private Integer count; |
| | | |
| | | @Column(name="money") |
| | | private BigDecimal money; |
| | | |
| | | @Column(name="createTime") |
| | | private Long createTime; |
| | | |
| | | public Long getId() { |
| | | return id; |
| | | } |
| | | |
| | | public void setId(Long id) { |
| | | this.id = id; |
| | | } |
| | | |
| | | public UserInfo getUserInfo() { |
| | | return userInfo; |
| | | } |
| | | |
| | | public void setUserInfo(UserInfo userInfo) { |
| | | this.userInfo = userInfo; |
| | | } |
| | | |
| | | public Integer getCount() { |
| | | return count; |
| | | } |
| | | |
| | | public void setCount(Integer count) { |
| | | this.count = count; |
| | | } |
| | | |
| | | public BigDecimal getMoney() { |
| | | return money; |
| | | } |
| | | |
| | | public void setMoney(BigDecimal money) { |
| | | this.money = money; |
| | | } |
| | | |
| | | public Long getCreateTime() { |
| | | return createTime; |
| | | } |
| | | |
| | | public void setCreateTime(Long createTime) { |
| | | this.createTime = createTime; |
| | | } |
| | | |
| | | } |