package com.ks.vip.pojo.DTO;
|
|
import com.ks.vip.pojo.Enums.PayWayEnum;
|
import org.yeshi.utils.generater.mybatis.Column;
|
|
import java.math.BigDecimal;
|
import java.util.Date;
|
|
public class VipOrderDTO {
|
|
private Long comboId;
|
|
private String uid;
|
|
private String threeOrderId;
|
|
private BigDecimal payMoney;
|
|
private Date payTime;
|
|
private String payAccount;
|
|
private PayWayEnum payWay;
|
|
|
public Long getComboId() {
|
return comboId;
|
}
|
|
public void setComboId(Long comboId) {
|
this.comboId = comboId;
|
}
|
|
public String getUid() {
|
return uid;
|
}
|
|
public void setUid(String uid) {
|
this.uid = uid;
|
}
|
|
public String getThreeOrderId() {
|
return threeOrderId;
|
}
|
|
public void setThreeOrderId(String threeOrderId) {
|
this.threeOrderId = threeOrderId;
|
}
|
|
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 String getPayAccount() {
|
return payAccount;
|
}
|
|
public void setPayAccount(String payAccount) {
|
this.payAccount = payAccount;
|
}
|
|
public PayWayEnum getPayWay() {
|
return payWay;
|
}
|
|
public void setPayWay(PayWayEnum payWay) {
|
this.payWay = payWay;
|
}
|
}
|