18 lines
536 B
Dart
18 lines
536 B
Dart
class CommonVariables {
|
|
static bool isNetWorkOn = false;
|
|
|
|
|
|
// 企业微信客服拉起的url地址
|
|
static String wxKfUrl = "https://work.weixin.qq.com/kfid/kfcab6a07e8aac68945";
|
|
// 企业微信ID
|
|
static String wxCorpId = "wwc17348c75dbde1dc";
|
|
//ICP备案号
|
|
static String ICPRightCode = "皖ICP备2024068219号-1A";
|
|
//公司名称
|
|
static String enterpriseName = "合肥眠花糖家具有限责任公司";
|
|
//备案时间
|
|
static String ICPTime = "2022-2025";
|
|
|
|
static Map<String, Function(dynamic)> callMap = {};
|
|
}
|