package com.ks.app.dto.config;
|
|
import org.yeshi.utils.annotation.Map;
|
|
public class WXTransferConfig {
|
@Map("mchId")
|
private String mchId;
|
@Map("key")
|
private String key;
|
@Map("certPwd")
|
private String certPwd;
|
@Map("certPath")
|
private String certPath;
|
|
public String getMchId() {
|
return mchId;
|
}
|
|
public void setMchId(String mchId) {
|
this.mchId = mchId;
|
}
|
|
public String getKey() {
|
return key;
|
}
|
|
public void setKey(String key) {
|
this.key = key;
|
}
|
|
public String getCertPwd() {
|
return certPwd;
|
}
|
|
public void setCertPwd(String certPwd) {
|
this.certPwd = certPwd;
|
}
|
|
public String getCertPath() {
|
return certPath;
|
}
|
|
public void setCertPath(String certPath) {
|
this.certPath = certPath;
|
}
|
}
|