package com.yeshi.fanli.entity.money;
|
|
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_order_team_reward_debt_repay_history")
|
public class OrderTeamRewardDebtRepayHistory {
|
@Column(name = "drh_id")
|
private Long id;
|
@Column(name = "drh_debt_id")
|
private OrderTeamRewardDebt 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 OrderTeamRewardDebt getDebt() {
|
return debt;
|
}
|
|
public void setDebt(OrderTeamRewardDebt 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;
|
}
|
|
}
|