java110
2021-08-17 0c804c71ce10d528f2665382511d25f4d0df13ed
service-front/src/main/java/com/java110/front/properties/WechatAuthProperties.java
old mode 100644 new mode 100755
@@ -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;//微信公众号ID
    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;
    }
}