Explorar o código

:wrench: 优化购买短信回调地址

Twelve615 hai 1 ano
pai
achega
ea5fdb4f54

+ 3 - 1
crmeb-admin/src/main/java/com/zbkj/admin/service/impl/AAAServiceImpl.java

@@ -27,6 +27,7 @@ import org.apache.http.impl.client.CloseableHttpClient;
 import org.apache.http.impl.client.HttpClients;
 import org.apache.http.util.EntityUtils;
 import org.springframework.beans.factory.annotation.Autowired;
+import org.springframework.beans.factory.annotation.Value;
 import org.springframework.stereotype.Service;
 
 import javax.imageio.ImageIO;
@@ -53,7 +54,8 @@ public class AAAServiceImpl implements AAAService {
     /** 商户API私钥路径 */
     public static String privateKeyPath = "/usr/java/AimagePath/apiclient_key.pem";
     //public static String notifyUrl = "https://4076mr2069.imdo.co/api/front/erkai/wechat";
-    public static String notifyUrl = "https://www.guicaioa.com/api/front/erkai/wechat";
+    @Value("${crmeb.sms.pay.notify-url:https://www.guicaioa.com/api/front/erkai/wechat}")
+    public String notifyUrl;
 //    public static String privateKeyPath = "C:\\Users\\ASUS\\Desktop\\apiclient_key2.pem";
 //    public static String notifyUrl = "http://d06u7pg536nk.ngrok.xiaomiqiu123.top/api/front/erkai/wechat";
     /** 商户证书序列号 */

+ 3 - 1
crmeb-admin/src/main/resources/application-dev.yml

@@ -12,7 +12,9 @@ crmeb:
   retailStoreBrokerageRatio: 30 #佣金返佣比例和上限
   activityStyleCachedTime: 10 #活动边框缓存周期 秒为单位,生产环境适当5-10分钟即可
   activityStyleProductLimit: 100 # 活动边框指定商品上线
-
+  sms:
+    pay:
+      notify-url: http://120.79.86.50:8012/api/front/erkai/wechat
 # 配置端口
 server:
   port: 8011

+ 3 - 1
crmeb-admin/src/main/resources/application-prod.yml

@@ -12,7 +12,9 @@ crmeb:
   retailStoreBrokerageRatio: 30 #佣金返佣比例和上限
   activityStyleCachedTime: 10 #活动边框缓存周期 秒为单位,生产环境适当5-10分钟即可
   activityStyleProductLimit: 100 # 活动边框指定商品上线
-
+  sms:
+    pay:
+      notify-url: https://www.guicaioa.com/api/front/erkai/wechat
 # 配置端口
 server:
   port: 8011