Commit 4493e8a0 by jinxin

token

parent 4dd183ed
......@@ -53,6 +53,16 @@ public class Config {
private String promotionCaseId;
@Value("${promotionCaseName}")
private String promotionCaseName;
@Value("${buySuiteId}")
private String buySuiteId;
public String getBuySuiteId() {
return buySuiteId;
}
public void setBuySuiteId(String buySuiteId) {
this.buySuiteId = buySuiteId;
}
public String getQywxCashierSecret() {
return qywxCashierSecret;
......
......@@ -104,7 +104,7 @@ public class AppOrderApiServiceImpl implements AppOrderApiService {
String secret = config.getQywxCashierSecret();
String promotionCaseName = config.getPromotionCaseName();
String promotionCaseId = config.getPromotionCaseId();
String buySuiteId = config.getWxSuiteid();
String buySuiteId = config.getBuySuiteId();
WxEnterpriseDTO wxEnterpriseDTO = wxEnterpriseService.selectById(wxEnterpriseId);
String openCorpid = wxEnterpriseDTO.getOpenCorpid();
String serviceCorpid = config.getCorpid();
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment