| | |
| | | package com.yeshi.fanli.entity.order.dividents;
|
| | |
|
| | | import java.math.BigDecimal;
|
| | | import java.util.Date;
|
| | |
|
| | | import org.yeshi.utils.mybatis.Column;
|
| | | import org.yeshi.utils.mybatis.Table;
|
| | |
|
| | | /**
|
| | | * 分红记录
|
| | | * @author Administrator
|
| | | *
|
| | | */
|
| | | @Table("yeshi_ec_team_dividents_record")
|
| | | public class TeamDividentsRecord {
|
| | |
|
| | | public final static int STATE_VALID = 1;
|
| | | public final static int STATE_INVALID = 0;
|
| | |
|
| | | @Column(name = "td_id")
|
| | | private Long id;
|
| | | @Column(name = "td_uid")
|
| | | private Long uid;
|
| | | @Column(name = "td_day")
|
| | | private String day;// 天,如:2020-04-01
|
| | | @Column(name = "td_money")
|
| | | private BigDecimal money;
|
| | | @Column(name = "td_state")
|
| | | private Integer state;
|
| | | @Column(name = "td_create_time")
|
| | | private Date createTime;
|
| | | @Column(name = "td_update_time")
|
| | | private Date updateTime;
|
| | |
|
| | | public Long getId() {
|
| | | return id;
|
| | | }
|
| | |
|
| | | public void setId(Long id) {
|
| | | this.id = id;
|
| | | }
|
| | |
|
| | | public Long getUid() {
|
| | | return uid;
|
| | | }
|
| | |
|
| | | public void setUid(Long uid) {
|
| | | this.uid = uid;
|
| | | }
|
| | |
|
| | | public String getDay() {
|
| | | return day;
|
| | | }
|
| | |
|
| | | public void setDay(String day) {
|
| | | this.day = day;
|
| | | }
|
| | |
|
| | | public BigDecimal getMoney() {
|
| | | return money;
|
| | | }
|
| | |
|
| | | public void setMoney(BigDecimal money) {
|
| | | this.money = money;
|
| | | }
|
| | |
|
| | | public Integer getState() {
|
| | | return state;
|
| | | }
|
| | |
|
| | | public void setState(Integer state) {
|
| | | this.state = state;
|
| | | }
|
| | |
|
| | | public Date getCreateTime() {
|
| | | return createTime;
|
| | | }
|
| | |
|
| | | public void setCreateTime(Date createTime) {
|
| | | this.createTime = createTime;
|
| | | }
|
| | |
|
| | | public Date getUpdateTime() {
|
| | | return updateTime;
|
| | | }
|
| | |
|
| | | public void setUpdateTime(Date updateTime) {
|
| | | this.updateTime = updateTime;
|
| | | }
|
| | | }
|
| | | package com.yeshi.fanli.entity.order.dividents; |
| | | |
| | | import java.math.BigDecimal; |
| | | import java.util.Date; |
| | | |
| | | import org.yeshi.utils.generater.mybatis.Column; |
| | | import org.yeshi.utils.generater.mybatis.Table; |
| | | |
| | | /** |
| | | * 分红记录 |
| | | * @author Administrator |
| | | * |
| | | */ |
| | | @Table("yeshi_ec_team_dividents_record") |
| | | public class TeamDividentsRecord { |
| | | |
| | | public final static int STATE_VALID = 1; |
| | | public final static int STATE_INVALID = 0; |
| | | |
| | | @Column(name = "td_id") |
| | | private Long id; |
| | | @Column(name = "td_uid") |
| | | private Long uid; |
| | | @Column(name = "td_day") |
| | | private String day;// 天,如:2020-04-01 |
| | | @Column(name = "td_money") |
| | | private BigDecimal money; |
| | | @Column(name = "td_state") |
| | | private Integer state; |
| | | @Column(name = "td_create_time") |
| | | private Date createTime; |
| | | @Column(name = "td_update_time") |
| | | private Date updateTime; |
| | | @Column(name = "td_type") |
| | | private Integer type; |
| | | |
| | | public Integer getType() { |
| | | return type; |
| | | } |
| | | |
| | | public void setType(Integer type) { |
| | | this.type = type; |
| | | } |
| | | |
| | | public Long getId() { |
| | | return id; |
| | | } |
| | | |
| | | public void setId(Long id) { |
| | | this.id = id; |
| | | } |
| | | |
| | | public Long getUid() { |
| | | return uid; |
| | | } |
| | | |
| | | public void setUid(Long uid) { |
| | | this.uid = uid; |
| | | } |
| | | |
| | | public String getDay() { |
| | | return day; |
| | | } |
| | | |
| | | public void setDay(String day) { |
| | | this.day = day; |
| | | } |
| | | |
| | | public BigDecimal getMoney() { |
| | | return money; |
| | | } |
| | | |
| | | public void setMoney(BigDecimal money) { |
| | | this.money = money; |
| | | } |
| | | |
| | | public Integer getState() { |
| | | return state; |
| | | } |
| | | |
| | | public void setState(Integer state) { |
| | | this.state = state; |
| | | } |
| | | |
| | | public Date getCreateTime() { |
| | | return createTime; |
| | | } |
| | | |
| | | public void setCreateTime(Date createTime) { |
| | | this.createTime = createTime; |
| | | } |
| | | |
| | | public Date getUpdateTime() { |
| | | return updateTime; |
| | | } |
| | | |
| | | public void setUpdateTime(Date updateTime) { |
| | | this.updateTime = updateTime; |
| | | } |
| | | } |