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;
|
|
@Table("yeshi_ec_order_team_dividents_debt_repay_history")
|
public class TeamDividentsDebtRepayHistory {
|
@Column(name = "drh_id")
|
private Long id;
|
@Column(name = "drh_debt_id")
|
private TeamDividentsDebt debt;
|
@Column(name = "drh_money")
|
private BigDecimal money;
|
@Column(name = "drh_uid")
|
private Long uid;
|
@Column(name = "drh_beizhu")
|
private String beiZhu;
|
@Column(name = "drh_create_time")
|
private Date createTime;
|
|
public Long getId() {
|
return id;
|
}
|
|
public void setId(Long id) {
|
this.id = id;
|
}
|
|
public TeamDividentsDebt getDebt() {
|
return debt;
|
}
|
|
public void setDebt(TeamDividentsDebt debt) {
|
this.debt = debt;
|
}
|
|
public BigDecimal getMoney() {
|
return money;
|
}
|
|
public void setMoney(BigDecimal money) {
|
this.money = money;
|
}
|
|
public Long getUid() {
|
return uid;
|
}
|
|
public void setUid(Long uid) {
|
this.uid = uid;
|
}
|
|
public String getBeiZhu() {
|
return beiZhu;
|
}
|
|
public void setBeiZhu(String beiZhu) {
|
this.beiZhu = beiZhu;
|
}
|
|
public Date getCreateTime() {
|
return createTime;
|
}
|
|
public void setCreateTime(Date createTime) {
|
this.createTime = createTime;
|
}
|
}
|