package com.yeshi.fanli.entity.order;
|
|
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_order_weiquan_record")
|
public class UserOrderWeiQuanRecord {
|
@Column(name = "wr_id")
|
private Long id;
|
@Column(name = "wr_source_type")
|
private Integer sourceType;
|
@Column(name = "wr_trade_id")
|
private String tradeId;
|
@Column(name = "wr_uid")
|
private Long uid;
|
@Column(name = "wr_money")
|
private BigDecimal money;
|
@Column(name = "wr_state")
|
private Integer state;// 0-未扣款 1-已扣款
|
@Column(name = "wr_create_time")
|
private Date createTime;
|
@Column(name = "wr_update_time")
|
private Date updateTime;
|
|
public Long getId() {
|
return id;
|
}
|
|
public void setId(Long id) {
|
this.id = id;
|
}
|
|
public Integer getSourceType() {
|
return sourceType;
|
}
|
|
public void setSourceType(Integer sourceType) {
|
this.sourceType = sourceType;
|
}
|
|
public String getTradeId() {
|
return tradeId;
|
}
|
|
public void setTradeId(String tradeId) {
|
this.tradeId = tradeId;
|
}
|
|
public Long getUid() {
|
return uid;
|
}
|
|
public void setUid(Long uid) {
|
this.uid = uid;
|
}
|
|
public BigDecimal getMoney() {
|
return money;
|
}
|
|
public void setMoney(BigDecimal money) {
|
this.money = money;
|
}
|
|
public Integer getState() {
|
return state;
|
}
|
|
public void setState(Integer state) {
|
this.state = state;
|
}
|
|
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;
|
}
|
|
}
|