chengf
2026-03-11 b88a288f4f787b509463678e3cd9ccfa3f37014b
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
package com.java110.dto.payment;
 
import java.io.Serializable;
 
public class NotifyPaymentOrderDto implements Serializable{
 
    private String appId;
 
    private String param;
 
    private String communityId;
 
    private String paymentPoolId;
    public NotifyPaymentOrderDto(String appId, String param,String communityId) {
        this.appId = appId;
        this.param = param;
        this.communityId = communityId;
    }
    public NotifyPaymentOrderDto(String appId, String param,String communityId,String paymentPoolId) {
        this.appId = appId;
        this.param = param;
        this.communityId = communityId;
        this.paymentPoolId = paymentPoolId;
    }
 
    public NotifyPaymentOrderDto() {
    }
 
    public String getAppId() {
        return appId;
    }
 
    public void setAppId(String appId) {
        this.appId = appId;
    }
 
    public String getParam() {
        return param;
    }
 
    public void setParam(String param) {
        this.param = param;
    }
 
    public String getCommunityId() {
        return communityId;
    }
 
    public void setCommunityId(String communityId) {
        this.communityId = communityId;
    }
 
    public String getPaymentPoolId() {
        return paymentPoolId;
    }
 
    public void setPaymentPoolId(String paymentPoolId) {
        this.paymentPoolId = paymentPoolId;
    }
}