package config //微信配置相关 //企业微信ID type workWechatId struct { CompanyId string `json:id` //企业ID } //企业微信应用配置 type workWechatApplication struct { AgentId string `json:agentid` //应用ID SecretStr string `json:secretstr` //应用Secret } //企业微信内置应用 type workWechatSecret struct { SecretStr string `json:secretstr` //应用Secret }