package com.yeshi.fanli.entity.bus.tlj;
|
|
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_user_taolijin_report")
|
public class UserTaoLiJinReport {
|
|
@Column(name = "utr_id")
|
private String id; // 淘礼金Id
|
|
@Column(name = "utr_unfreeze_amount")
|
private BigDecimal unfreezeAmount; // 解冻金额
|
|
@Column(name = "utr_unfreeze_num")
|
private Integer unfreezeNum; // 解冻红包个数
|
|
@Column(name = "utr_refund_amount")
|
private BigDecimal refundAmount; // 失效回退金额
|
|
@Column(name = "utr_refund_num")
|
private Integer refundNum; // 失效回退红包个数
|
|
@Column(name = "utr_alipay_amount")
|
private BigDecimal alipayAmount; // 引导成交金额
|
|
@Column(name = "utr_use_amount")
|
private BigDecimal useAmount; // 红包核销金额
|
|
@Column(name = "utr_use_num")
|
private Integer useNum; // 红包核销个数
|
|
@Column(name = "utr_win_amount")
|
private BigDecimal winAmount; // 红包领取金额
|
|
@Column(name = "utr_win_num")
|
private Integer winNum; // 红包领取个数
|
|
@Column(name = "utr_pre_commission_amount")
|
private BigDecimal preCommissionAmount; // 引导预估佣金金额
|
|
@Column(name = "utr_create_time")
|
private Date createTime;
|
|
@Column(name = "utr_update_time")
|
private Date updateTime;
|
|
|
|
public String getId() {
|
return id;
|
}
|
|
public void setId(String id) {
|
this.id = id;
|
}
|
|
public BigDecimal getUnfreezeAmount() {
|
return unfreezeAmount;
|
}
|
|
public void setUnfreezeAmount(BigDecimal unfreezeAmount) {
|
this.unfreezeAmount = unfreezeAmount;
|
}
|
|
public Integer getUnfreezeNum() {
|
return unfreezeNum;
|
}
|
|
public void setUnfreezeNum(Integer unfreezeNum) {
|
this.unfreezeNum = unfreezeNum;
|
}
|
|
public BigDecimal getRefundAmount() {
|
return refundAmount;
|
}
|
|
public void setRefundAmount(BigDecimal refundAmount) {
|
this.refundAmount = refundAmount;
|
}
|
|
public Integer getRefundNum() {
|
return refundNum;
|
}
|
|
public void setRefundNum(Integer refundNum) {
|
this.refundNum = refundNum;
|
}
|
|
public BigDecimal getAlipayAmount() {
|
return alipayAmount;
|
}
|
|
public void setAlipayAmount(BigDecimal alipayAmount) {
|
this.alipayAmount = alipayAmount;
|
}
|
|
public BigDecimal getUseAmount() {
|
return useAmount;
|
}
|
|
public void setUseAmount(BigDecimal useAmount) {
|
this.useAmount = useAmount;
|
}
|
|
public Integer getUseNum() {
|
return useNum;
|
}
|
|
public void setUseNum(Integer useNum) {
|
this.useNum = useNum;
|
}
|
|
public BigDecimal getWinAmount() {
|
return winAmount;
|
}
|
|
public void setWinAmount(BigDecimal winAmount) {
|
this.winAmount = winAmount;
|
}
|
|
public Integer getWinNum() {
|
return winNum;
|
}
|
|
public void setWinNum(Integer winNum) {
|
this.winNum = winNum;
|
}
|
|
public BigDecimal getPreCommissionAmount() {
|
return preCommissionAmount;
|
}
|
|
public void setPreCommissionAmount(BigDecimal preCommissionAmount) {
|
this.preCommissionAmount = preCommissionAmount;
|
}
|
|
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;
|
}
|
|
}
|