cy
2022-06-21 129904537f66509f97b285e7eb4f42b3dc349dd0
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
package cn.ksource.web.controller.wxpay.paybean;
 
public class OrderBean {
 
    
    private String body = "";
    
    private String detail = "";
    
    private String attach = "";
    
    private String out_trade_no = "";
    
    private String fee_type = "";
    
    private int total_fee = 0;
    
    private String time_start = "";
    
    private String time_expire = "";
    
    private String goods_tag = "";
    
    private String product_id = "";
    
    private String limit_pay = "";
    
    private String openid = "";
 
    public String getBody() {
        return body;
    }
 
    public void setBody(String body) {
        this.body = body;
    }
 
    public String getDetail() {
        return detail;
    }
 
    public void setDetail(String detail) {
        this.detail = detail;
    }
 
    public String getAttach() {
        return attach;
    }
 
    public void setAttach(String attach) {
        this.attach = attach;
    }
 
    public String getOut_trade_no() {
        return out_trade_no;
    }
 
    public void setOut_trade_no(String out_trade_no) {
        this.out_trade_no = out_trade_no;
    }
 
    public String getFee_type() {
        return fee_type;
    }
 
    public void setFee_type(String fee_type) {
        this.fee_type = fee_type;
    }
 
 
    public int getTotal_fee() {
        return total_fee;
    }
 
    public void setTotal_fee(int total_fee) {
        this.total_fee = total_fee;
    }
 
    public String getTime_start() {
        return time_start;
    }
 
    public void setTime_start(String time_start) {
        this.time_start = time_start;
    }
 
    public String getTime_expire() {
        return time_expire;
    }
 
    public void setTime_expire(String time_expire) {
        this.time_expire = time_expire;
    }
 
    public String getGoods_tag() {
        return goods_tag;
    }
 
    public void setGoods_tag(String goods_tag) {
        this.goods_tag = goods_tag;
    }
 
    public String getProduct_id() {
        return product_id;
    }
 
    public void setProduct_id(String product_id) {
        this.product_id = product_id;
    }
 
    public String getLimit_pay() {
        return limit_pay;
    }
 
    public void setLimit_pay(String limit_pay) {
        this.limit_pay = limit_pay;
    }
 
    public String getOpenid() {
        return openid;
    }
 
    public void setOpenid(String openid) {
        this.openid = openid;
    }
    
    
    
    
}