admin
2021-06-05 10ceb8fd7972048310188cc4d4646ab86cd69cb9
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
package com.ks.vip.pojo.DTO;
 
import com.ks.vip.pojo.Enums.PayWayEnum;
import org.yeshi.utils.generater.mybatis.Column;
 
import java.io.Serializable;
import java.math.BigDecimal;
import java.util.Date;
 
public class VipOrderDTO implements Serializable {
 
    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;
    }
}