From fa3af86b3003638eb9d405d3131465e80da73914 Mon Sep 17 00:00:00 2001
From: wuxw <928255095@qq.com>
Date: 星期六, 11 一月 2020 19:19:23 +0800
Subject: [PATCH] 加入物业费开发功能
---
AppFrontService/src/main/java/com/java110/app/properties/WechatAuthProperties.java | 46 ++++++++++++++++++++++++++++++++++++++++++++++
1 files changed, 46 insertions(+), 0 deletions(-)
diff --git a/AppFrontService/src/main/java/com/java110/app/properties/WechatAuthProperties.java b/AppFrontService/src/main/java/com/java110/app/properties/WechatAuthProperties.java
index 0533e95..2c06ce9 100644
--- a/AppFrontService/src/main/java/com/java110/app/properties/WechatAuthProperties.java
+++ b/AppFrontService/src/main/java/com/java110/app/properties/WechatAuthProperties.java
@@ -10,10 +10,24 @@
@PropertySource("classpath:wechatAuth.properties")
public class WechatAuthProperties {
+ //寰俊鏀粯绫诲瀷
+//NATIVE--鍘熺敓鏀粯
+//JSAPI--鍏紬鍙锋敮浠�-灏忕▼搴忔敮浠�
+//MWEB--H5鏀粯
+//APP -- app鏀粯
+ public static final String TRADE_TYPE_NATIVE = "NATIVE";
+ public static final String TRADE_TYPE_JSAPI = "JSAPI";
+ public static final String TRADE_TYPE_MWEB = "MWEB";
+ public static final String TRADE_TYPE_APP = "APP";
+
private String sessionHost;
private String appId;
private String secret;
private String grantType;
+ private String key;
+ private String mchId;
+ private String wxPayUnifiedOrder;
+ private String wxNotifyUrl;
public String getSessionHost() {
return sessionHost;
@@ -46,4 +60,36 @@
public void setGrantType(String grantType) {
this.grantType = grantType;
}
+
+ public String getKey() {
+ return key;
+ }
+
+ public void setKey(String key) {
+ this.key = key;
+ }
+
+ public String getMchId() {
+ return mchId;
+ }
+
+ public void setMchId(String mchId) {
+ this.mchId = mchId;
+ }
+
+ public String getWxPayUnifiedOrder() {
+ return wxPayUnifiedOrder;
+ }
+
+ public void setWxPayUnifiedOrder(String wxPayUnifiedOrder) {
+ this.wxPayUnifiedOrder = wxPayUnifiedOrder;
+ }
+
+ public String getWxNotifyUrl() {
+ return wxNotifyUrl;
+ }
+
+ public void setWxNotifyUrl(String wxNotifyUrl) {
+ this.wxNotifyUrl = wxNotifyUrl;
+ }
}
--
Gitblit v1.8.0