java110
2023-06-29 4e7907983a99e695f2acba4dec8bd73b7dbe6b2b
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
package com.java110.dto.payment;
 
import java.io.Serializable;
 
public class NotifyPaymentOrderDto implements Serializable{
 
    private String appId;
 
    private String param;
 
    private String communityId;
 
    public NotifyPaymentOrderDto(String appId, String param,String communityId) {
        this.appId = appId;
        this.param = param;
        this.communityId = communityId;
    }
 
    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;
    }
}