package com.ks.lijin.pojo.DO;
|
|
import org.springframework.data.annotation.Id;
|
import org.springframework.data.mongodb.core.mapping.Document;
|
|
import java.io.Serializable;
|
import java.util.Date;
|
|
@Document(collection = "dangerGoods")
|
public class LiJinDangerGoods implements Serializable {
|
|
@Id
|
private String id;
|
|
//交易ID
|
private String tradeId;
|
//订单号
|
private String orderNo;
|
//订单支付时间
|
private Date orderPayTime;
|
//商品ID
|
private String goodsId;
|
//商品类型
|
private Integer goodsType;
|
//礼金面额(分)
|
private Integer maxLijinMoney;
|
//平台佣金(分)
|
private Integer minCommission;
|
private Date createTime;
|
private Date updateTime;
|
|
public String getId() {
|
return id;
|
}
|
|
public void setId(String id) {
|
this.id = id;
|
}
|
|
public String getGoodsId() {
|
return goodsId;
|
}
|
|
public void setGoodsId(String goodsId) {
|
this.goodsId = goodsId;
|
}
|
|
public Integer getGoodsType() {
|
return goodsType;
|
}
|
|
public void setGoodsType(Integer goodsType) {
|
this.goodsType = goodsType;
|
}
|
|
public Integer getMaxLijinMoney() {
|
return maxLijinMoney;
|
}
|
|
public void setMaxLijinMoney(Integer maxLijinMoney) {
|
this.maxLijinMoney = maxLijinMoney;
|
}
|
|
public Integer getMinCommission() {
|
return minCommission;
|
}
|
|
public void setMinCommission(Integer minCommission) {
|
this.minCommission = minCommission;
|
}
|
|
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;
|
}
|
}
|