package com.yeshi.buwan.domain.vip;
|
|
import java.math.BigDecimal;
|
import java.util.Date;
|
|
//会员订单记录
|
public class OrderRecord {
|
|
//未支付
|
public final static int STATE_NOT_PAY = 0;
|
|
//已支付
|
public final static int STATE_PAY = 1;
|
|
//订单已取消
|
public final static int STATE_CANCEL = -1;
|
|
//支付宝
|
public final static int PAY_WAY_ALIPAY = 1;
|
|
//微信
|
public final static int PAY_WAY_WX = 2;
|
|
//影视豆支付
|
public final static int PAY_WAY_GOLDCORN = 3;
|
|
//支付宝+影视豆
|
public final static int PAY_WAY_ALIPAY_GOLDCORN = 13;
|
|
//微信+影视豆
|
public final static int PAY_WAY_WX_GOLDCORN = 23;
|
|
//订单类型
|
private OrderType orderType;
|
|
private String id;
|
//用户ID
|
private String uid;
|
//状态
|
private Integer state;
|
|
//资金支付状态
|
private Boolean moneyPay;
|
|
//资金支付状态
|
private Boolean goldCornPay;
|
|
//影视豆
|
private Integer goldCorn;
|
|
//单片ID
|
private String videoCid;
|
|
private String videoVid;
|
|
|
|
//节目code
|
private String programCode;
|
|
//类型
|
private VIPPriceType type;
|
|
//资金
|
private BigDecimal money;
|
//支付方式
|
private Integer payWay;
|
//支付金额
|
private BigDecimal payMoney;
|
|
private String ipInfo;
|
|
//付款时间
|
private Date payTime;
|
private Date createTime;
|
private Date updateTime;
|
//会员开始时间
|
private Date vipStartTime;
|
//会员结束时间
|
private Date vipEndTime;
|
|
//备注
|
private String remarks;
|
|
|
public String getProgramCode() {
|
return programCode;
|
}
|
|
public void setProgramCode(String programCode) {
|
this.programCode = programCode;
|
}
|
|
public Boolean getMoneyPay() {
|
return moneyPay;
|
}
|
|
public void setMoneyPay(Boolean moneyPay) {
|
this.moneyPay = moneyPay;
|
}
|
|
public Boolean getGoldCornPay() {
|
return goldCornPay;
|
}
|
|
public void setGoldCornPay(Boolean goldCornPay) {
|
this.goldCornPay = goldCornPay;
|
}
|
|
public Date getVipStartTime() {
|
return vipStartTime;
|
}
|
|
public void setVipStartTime(Date vipStartTime) {
|
this.vipStartTime = vipStartTime;
|
}
|
|
public Date getVipEndTime() {
|
return vipEndTime;
|
}
|
|
public void setVipEndTime(Date vipEndTime) {
|
this.vipEndTime = vipEndTime;
|
}
|
|
public String getId() {
|
return id;
|
}
|
|
public void setId(String id) {
|
this.id = id;
|
}
|
|
public String getUid() {
|
return uid;
|
}
|
|
public void setUid(String uid) {
|
this.uid = uid;
|
}
|
|
public Integer getState() {
|
return state;
|
}
|
|
public void setState(Integer state) {
|
this.state = state;
|
}
|
|
public VIPPriceType getType() {
|
return type;
|
}
|
|
public void setType(VIPPriceType type) {
|
this.type = type;
|
}
|
|
public BigDecimal getMoney() {
|
return money;
|
}
|
|
public void setMoney(BigDecimal money) {
|
this.money = money;
|
}
|
|
public Integer getPayWay() {
|
return payWay;
|
}
|
|
public void setPayWay(Integer payWay) {
|
this.payWay = payWay;
|
}
|
|
public BigDecimal getPayMoney() {
|
return payMoney;
|
}
|
|
public void setPayMoney(BigDecimal payMoney) {
|
this.payMoney = payMoney;
|
}
|
|
public Date getPayTime() {
|
return payTime;
|
}
|
|
public void setPayTime(Date payTime) {
|
this.payTime = payTime;
|
}
|
|
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;
|
}
|
|
|
public String getIpInfo() {
|
return ipInfo;
|
}
|
|
public void setIpInfo(String ipInfo) {
|
this.ipInfo = ipInfo;
|
}
|
|
public Integer getGoldCorn() {
|
return goldCorn;
|
}
|
|
public void setGoldCorn(Integer goldCorn) {
|
this.goldCorn = goldCorn;
|
}
|
|
|
public String getVideoCid() {
|
return videoCid;
|
}
|
|
public void setVideoCid(String videoCid) {
|
this.videoCid = videoCid;
|
}
|
|
public String getVideoVid() {
|
return videoVid;
|
}
|
|
public void setVideoVid(String videoVid) {
|
this.videoVid = videoVid;
|
}
|
|
public OrderType getOrderType() {
|
return orderType;
|
}
|
|
public void setOrderType(OrderType orderType) {
|
this.orderType = orderType;
|
}
|
|
public String getRemarks() {
|
return remarks;
|
}
|
|
public void setRemarks(String remarks) {
|
this.remarks = remarks;
|
}
|
}
|