You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
787 B
25 lines
787 B
package config
|
|
|
|
//微信配置相关
|
|
|
|
//企业微信ID
|
|
type workWechatId struct {
|
|
CompanyId string `json:id` //企业ID
|
|
WechatToken string `json:wechattokening` //企业ID
|
|
EncodingAESKey string `json:encodingaeskey` //企业ID
|
|
}
|
|
|
|
//企业微信应用配置
|
|
type workWechatApplication struct {
|
|
AgentId string `json:agentid` //应用ID
|
|
SecretStr string `json:secretstr` //应用Secret
|
|
WechatTokening string `json:wechattokening` //企业ID
|
|
EncodingAESKey string `json:encodingaeskey` //企业ID
|
|
}
|
|
|
|
//企业微信内置应用
|
|
type workWechatSecret struct {
|
|
SecretStr string `json:secretstr` //应用Secret
|
|
Token string `json:Token` //应用Secret
|
|
EncodingAESKey string `json:EncodingAESKey` //应用Secret
|
|
}
|
|
|