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_source_user")
|
public class TeamDividentsSourceUser {
|
@Column(name = "tdsu_id")
|
private Long id;
|
@Column(name = "tdsu_target_uid")
|
private Long targetUid;
|
@Column(name = "tdsu_source_uid")
|
private Long sourceUid;
|
@Column(name = "tdsu_day")
|
private String day;
|
@Column(name = "tdsu_money")
|
private BigDecimal money;
|
@Column(name = "tdsu_create_time")
|
private Date createTime;
|
@Column(name = "tdsu_update_time")
|
private Date updateTime;
|
|
public Long getId() {
|
return id;
|
}
|
|
public void setId(Long id) {
|
this.id = id;
|
}
|
|
public Long getTargetUid() {
|
return targetUid;
|
}
|
|
public void setTargetUid(Long targetUid) {
|
this.targetUid = targetUid;
|
}
|
|
public Long getSourceUid() {
|
return sourceUid;
|
}
|
|
public void setSourceUid(Long sourceUid) {
|
this.sourceUid = sourceUid;
|
}
|
|
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 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;
|
}
|
|
}
|