| | |
| | |
|
| | | 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;
|
| | |
|
| | | import org.yeshi.utils.mybatis.Column;
|
| | | import org.yeshi.utils.mybatis.Table;
|
| | | /**
|
| | | * 每日的提现记录
|
| | | * @author cxx
|
| | | *
|
| | | * @date 2018年1月29日
|
| | | */
|
| | | @Entity
|
| | | @Table(name="yeshi_ec_extract_record")
|
| | | @org.yeshi.utils.mybatis.Table("yeshi_ec_extract_record")
|
| | | @Table("yeshi_ec_extract_record")
|
| | | public class ExtractRecord {
|
| | |
|
| | | @org.yeshi.utils.mybatis.Column(name="id")
|
| | | @Id
|
| | | @GeneratedValue(strategy=GenerationType.AUTO)
|
| | | @Column(name="`id`")
|
| | | @Column(name="id")
|
| | | private Long id;
|
| | |
|
| | | @org.yeshi.utils.mybatis.Column(name="uid")
|
| | | @ManyToOne(fetch = FetchType.EAGER)
|
| | | @JoinColumn(name="uid")
|
| | | @Column(name="uid")
|
| | | private UserInfo userInfo;
|
| | |
|
| | | @org.yeshi.utils.mybatis.Column(name="count")
|
| | | @Column(name="count")
|
| | | private Integer count;
|
| | |
|
| | | @org.yeshi.utils.mybatis.Column(name="money")
|
| | | @Column(name="money")
|
| | | private BigDecimal money;
|
| | |
|
| | | @org.yeshi.utils.mybatis.Column(name="createTime")
|
| | | @Column(name="createTime")
|
| | | private Long createTime;
|
| | |
|
| | | public Long getId() {
|