From 23e50e9ef7f7189cb8e26c86e30de2e83486cf62 Mon Sep 17 00:00:00 2001
From: java110 <928255095@qq.com>
Date: 星期五, 05 三月 2021 10:49:49 +0800
Subject: [PATCH] 优化 查询
---
service-front/src/main/java/com/java110/front/properties/WechatAuthProperties.java | 56 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++
1 files changed, 56 insertions(+), 0 deletions(-)
diff --git a/service-front/src/main/java/com/java110/front/properties/WechatAuthProperties.java b/service-front/src/main/java/com/java110/front/properties/WechatAuthProperties.java
index d2caf35..1ca988b 100644
--- a/service-front/src/main/java/com/java110/front/properties/WechatAuthProperties.java
+++ b/service-front/src/main/java/com/java110/front/properties/WechatAuthProperties.java
@@ -28,6 +28,14 @@
private String mchId;
private String wxPayUnifiedOrder;
private String wxNotifyUrl;
+ private String rentingNotifyUrl;
+ private String goodsNotifyUrl;
+ private String oweFeeNotifyUrl;
+
+ private String wechatAppId;//寰俊鍏紬鍙稩D
+ private String wechatAppSecret;//寰俊鍏紬鍙风閽�
+
+ private String sendMsgUrl;//寰俊鍏紬鍙锋帹閫佹ā鏉夸俊鎭摼鎺�
public String getSessionHost() {
return sessionHost;
@@ -92,4 +100,52 @@
public void setWxNotifyUrl(String wxNotifyUrl) {
this.wxNotifyUrl = wxNotifyUrl;
}
+
+ public String getWechatAppId() {
+ return wechatAppId;
+ }
+
+ public void setWechatAppId(String wechatAppId) {
+ this.wechatAppId = wechatAppId;
+ }
+
+ public String getWechatAppSecret() {
+ return wechatAppSecret;
+ }
+
+ public void setWechatAppSecret(String wechatAppSecret) {
+ this.wechatAppSecret = wechatAppSecret;
+ }
+
+ public String getSendMsgUrl() {
+ return sendMsgUrl;
+ }
+
+ public void setSendMsgUrl(String sendMsgUrl) {
+ this.sendMsgUrl = sendMsgUrl;
+ }
+
+ public String getRentingNotifyUrl() {
+ return rentingNotifyUrl;
+ }
+
+ public void setRentingNotifyUrl(String rentingNotifyUrl) {
+ this.rentingNotifyUrl = rentingNotifyUrl;
+ }
+
+ public String getOweFeeNotifyUrl() {
+ return oweFeeNotifyUrl;
+ }
+
+ public void setOweFeeNotifyUrl(String oweFeeNotifyUrl) {
+ this.oweFeeNotifyUrl = oweFeeNotifyUrl;
+ }
+
+ public String getGoodsNotifyUrl() {
+ return goodsNotifyUrl;
+ }
+
+ public void setGoodsNotifyUrl(String goodsNotifyUrl) {
+ this.goodsNotifyUrl = goodsNotifyUrl;
+ }
}
--
Gitblit v1.8.0