package com.ks.lijin.pojo.DO;
|
|
import org.yeshi.utils.generater.mybatis.Column;
|
import org.yeshi.utils.generater.mybatis.Table;
|
|
import java.io.Serializable;
|
import java.math.BigDecimal;
|
import java.util.Date;
|
|
@Table("tlj_expend_record")
|
public class LiJinExpendRecord implements Serializable {
|
@Column(name = "rd_id")
|
private Long id;
|
|
@Column(name = "rd_uid")
|
private String uid;
|
|
@Column(name = "rd_account_id")
|
private Long accountId;
|
|
@Column(name = "rd_goods_id")
|
private String goodsId;
|
|
@Column(name = "rd_money")
|
private BigDecimal money;
|
|
@Column(name = "rd_num")
|
private Integer num;
|
|
@Column(name = "rd_title")
|
private String title;
|
|
@Column(name = "rd_rights_id")
|
private String rightsId;
|
|
@Column(name = "rd_send_url")
|
private String sendUrl;
|
|
@Column(name = "rd_unfreeze_amount")
|
private BigDecimal unfreezeAmount;
|
|
@Column(name = "rd_unfreeze_num")
|
private Integer unfreezeNum;
|
|
@Column(name = "rd_refund_amount")
|
private BigDecimal refundAmount;
|
|
@Column(name = "rd_refund_num")
|
private Integer refundNum;
|
|
@Column(name = "rd_alipay_amount")
|
private BigDecimal alipayAmount;
|
|
@Column(name = "rd_use_amount")
|
private BigDecimal useAmount;
|
|
@Column(name = "rd_use_num")
|
private Integer useNum;
|
|
@Column(name = "rd_win_amount")
|
private BigDecimal winAmount;
|
|
@Column(name = "rd_win_num")
|
private Integer winNum;
|
|
@Column(name = "rd_pre_commission_amount")
|
private BigDecimal preCommissionAmount;
|
|
@Column(name = "rd_create_time")
|
private Date createTime;
|
|
@Column(name = "rd_update_time")
|
private Date updateTime;
|
|
|
public Long getId() {
|
return id;
|
}
|
|
public void setId(Long id) {
|
this.id = id;
|
}
|
|
public String getUid() {
|
return uid;
|
}
|
|
public void setUid(String uid) {
|
this.uid = uid;
|
}
|
|
public Long getAccountId() {
|
return accountId;
|
}
|
|
public void setAccountId(Long accountId) {
|
this.accountId = accountId;
|
}
|
|
public String getGoodsId() {
|
return goodsId;
|
}
|
|
public void setGoodsId(String goodsId) {
|
this.goodsId = goodsId;
|
}
|
|
public BigDecimal getMoney() {
|
return money;
|
}
|
|
public void setMoney(BigDecimal money) {
|
this.money = money;
|
}
|
|
public Integer getNum() {
|
return num;
|
}
|
|
public void setNum(Integer num) {
|
this.num = num;
|
}
|
|
public String getTitle() {
|
return title;
|
}
|
|
public void setTitle(String title) {
|
this.title = title;
|
}
|
|
public String getRightsId() {
|
return rightsId;
|
}
|
|
public void setRightsId(String rightsId) {
|
this.rightsId = rightsId;
|
}
|
|
public String getSendUrl() {
|
return sendUrl;
|
}
|
|
public void setSendUrl(String sendUrl) {
|
this.sendUrl = sendUrl;
|
}
|
|
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;
|
}
|
}
|