wuxw
2024-06-15 e1013e581f738c65a723186674beef8aeba0bb1f
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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
package com.java110.dto.payment;
 
import com.java110.dto.integral.GiftIntegralDto;
import org.springframework.http.ResponseEntity;
 
import java.io.Serializable;
 
/**
 * 支付订单信息
 * 封装实体类
 */
public class PaymentOrderDto implements Serializable{
 
    public static final String SHARE_ACCT = "Y";
 
    private String orderId;
 
    private String transactionId;
 
    //金额
    private double money;
 
    private String name;
 
    private String appId;
 
    private String openId;
 
    private String userId;
 
    private String isShare;
 
    private String cycles;
 
    private String useIntegral;
 
    private GiftIntegralDto giftIntegralDto;
 
 
    private ResponseEntity<String> responseEntity;
 
 
    public String getOrderId() {
        return orderId;
    }
 
    public void setOrderId(String orderId) {
        this.orderId = orderId;
    }
 
    public double getMoney() {
        return money;
    }
 
    public void setMoney(double money) {
        this.money = money;
    }
 
    public String getName() {
        return name;
    }
 
    public void setName(String name) {
        this.name = name;
    }
 
 
    public ResponseEntity<String> getResponseEntity() {
        return responseEntity;
    }
 
    public void setResponseEntity(ResponseEntity<String> responseEntity) {
        this.responseEntity = responseEntity;
    }
 
    public String getAppId() {
        return appId;
    }
 
    public void setAppId(String appId) {
        this.appId = appId;
    }
 
    public String getOpenId() {
        return openId;
    }
 
    public void setOpenId(String openId) {
        this.openId = openId;
    }
 
    public String getTransactionId() {
        return transactionId;
    }
 
    public void setTransactionId(String transactionId) {
        this.transactionId = transactionId;
    }
 
    public String getUserId() {
        return userId;
    }
 
    public void setUserId(String userId) {
        this.userId = userId;
    }
 
    public String getIsShare() {
        return isShare;
    }
 
    public void setIsShare(String isShare) {
        this.isShare = isShare;
    }
 
    public GiftIntegralDto getGiftIntegralDto() {
        return giftIntegralDto;
    }
 
    public void setGiftIntegralDto(GiftIntegralDto giftIntegralDto) {
        this.giftIntegralDto = giftIntegralDto;
    }
 
    public String getCycles() {
        return cycles;
    }
 
    public void setCycles(String cycles) {
        this.cycles = cycles;
    }
 
    public String getUseIntegral() {
        return useIntegral;
    }
 
    public void setUseIntegral(String useIntegral) {
        this.useIntegral = useIntegral;
    }
}