|
@@ -35,10 +35,12 @@ var (
|
|
|
WxAppIdCygx string
|
|
|
WxAppSecretCygx string
|
|
|
|
|
|
-
|
|
|
WxAppIdMfyx string
|
|
|
WxAppSecretMfyx string
|
|
|
|
|
|
+ WxAppIdHt string // 海通公众号的appid
|
|
|
+ WxAppSecretHt string // 海通公众号的签名秘钥
|
|
|
+
|
|
|
// 小程序相关
|
|
|
|
|
|
// WxCrmAppId 随手办公小程序
|
|
@@ -51,6 +53,8 @@ var (
|
|
|
WxCopyYbAppId string
|
|
|
// WxMfyxAppId 买方研选小程序
|
|
|
WxMfyxAppId string
|
|
|
+
|
|
|
+ WxHtAppId string // 海通小程序
|
|
|
)
|
|
|
|
|
|
// LibreOfficePath LibreOfficePath的地址
|
|
@@ -200,6 +204,12 @@ func init() {
|
|
|
|
|
|
// WxCopyYbAppId 不知道这是啥,先配置上去吧
|
|
|
WxCopyYbAppId = config["wx_copy_yb_miniprogram_appid"]
|
|
|
+
|
|
|
+ // 海通公众号
|
|
|
+ WxAppIdHt = config["wx_ht_appid"]
|
|
|
+ WxAppSecretHt = config["wx_ht_app_secret"]
|
|
|
+ // WxHtAppId 海通小程序
|
|
|
+ WxHtAppId = config["wx_ht_miniprogram_appid"]
|
|
|
}
|
|
|
//日志配置
|
|
|
{
|