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")
|
public class TeamDividentsDebt {
|
@Column(name = "tdd_id")
|
private Long id;
|
@Column(name = "tdd_uid")
|
private Long uid;
|
@Column(name = "tdd_origin_money")
|
private BigDecimal originMoney;
|
@Column(name = "tdd_left_money")
|
private BigDecimal leftMoney;
|
@Column(name = "tdd_order_no")
|
private String orderNo;
|
@Column(name = "tdd_source_type")
|
private Integer sourceType;
|
@Column(name = "tdd_create_time")
|
private Date createTime;
|
@Column(name = "tdd_update_time")
|
private Date updateTime;
|
@Column(name = "tdd_estimate_pay_time")
|
private Date estimatePayTime;
|
|
public TeamDividentsDebt(Long uid, BigDecimal originMoney, String orderNo, Integer sourceType,
|
Date estimatePayTime) {
|
this.uid = uid;
|
this.originMoney = originMoney;
|
this.orderNo = orderNo;
|
this.sourceType = sourceType;
|
this.estimatePayTime = estimatePayTime;
|
}
|
|
public TeamDividentsDebt() {
|
|
}
|
|
public Date getEstimatePayTime() {
|
return estimatePayTime;
|
}
|
|
public void setEstimatePayTime(Date estimatePayTime) {
|
this.estimatePayTime = estimatePayTime;
|
}
|
|
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 BigDecimal getOriginMoney() {
|
return originMoney;
|
}
|
|
public void setOriginMoney(BigDecimal originMoney) {
|
this.originMoney = originMoney;
|
}
|
|
public BigDecimal getLeftMoney() {
|
return leftMoney;
|
}
|
|
public void setLeftMoney(BigDecimal leftMoney) {
|
this.leftMoney = leftMoney;
|
}
|
|
public String getOrderNo() {
|
return orderNo;
|
}
|
|
public void setOrderNo(String orderNo) {
|
this.orderNo = orderNo;
|
}
|
|
public Integer getSourceType() {
|
return sourceType;
|
}
|
|
public void setSourceType(Integer sourceType) {
|
this.sourceType = sourceType;
|
}
|
|
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;
|
}
|
}
|