WechatParam.java
2.26 KB
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
package com.diligrp.cashier.pipeline.model;
import com.diligrp.cashier.shared.domain.BaseDO;
public class WechatParam extends BaseDO {
// 通道ID
private Long pipelineId;
// 商户号, 服务商模式下为服务商商户号
private String mchId;
// 小程序ID
private String appId;
// 小程序密钥
private String appSecret;
// 商户公钥序列号
private String serialNo;
// 商户私钥
private String privateKey;
// 微信公钥序列号
private String wechatSerialNo;
// 微信公钥
private String wechatPublicKey;
// 微信apiV3Key
private String apiV3Key;
// 通道类型: 直连通道或服务商通道
private Integer type;
public Long getPipelineId() {
return pipelineId;
}
public void setPipelineId(Long pipelineId) {
this.pipelineId = pipelineId;
}
public String getMchId() {
return mchId;
}
public void setMchId(String mchId) {
this.mchId = mchId;
}
public String getAppId() {
return appId;
}
public void setAppId(String appId) {
this.appId = appId;
}
public String getAppSecret() {
return appSecret;
}
public void setAppSecret(String appSecret) {
this.appSecret = appSecret;
}
public String getSerialNo() {
return serialNo;
}
public void setSerialNo(String serialNo) {
this.serialNo = serialNo;
}
public String getPrivateKey() {
return privateKey;
}
public void setPrivateKey(String privateKey) {
this.privateKey = privateKey;
}
public String getWechatSerialNo() {
return wechatSerialNo;
}
public void setWechatSerialNo(String wechatSerialNo) {
this.wechatSerialNo = wechatSerialNo;
}
public String getWechatPublicKey() {
return wechatPublicKey;
}
public void setWechatPublicKey(String wechatPublicKey) {
this.wechatPublicKey = wechatPublicKey;
}
public String getApiV3Key() {
return apiV3Key;
}
public void setApiV3Key(String apiV3Key) {
this.apiV3Key = apiV3Key;
}
public Integer getType() {
return type;
}
public void setType(Integer type) {
this.type = type;
}
}