WechatOwnerService/constant/AppConstant.js
2020-06-05 17:06:16 +08:00

21 lines
588 B
JavaScript
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

/**
* 应用相关常量
*
* add by wuxw 2019-12-28
*/
class AppConstant{
/**
* 应用信息,主要是用来和后端服务交互时的时候用
*
* 这里请不要修改这个不是微信的AppId 和appSecurity 这个是HC小区管理系统分配的
* 这里请不要修改这个不是微信的AppId 和appSecurity 这个是HC小区管理系统分配的
* 这里请不要修改这个不是微信的AppId 和appSecurity 这个是HC小区管理系统分配的
*/
static appId = "992019111758490006";
static appSecurity = "";
}
module.exports = AppConstant;