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.
20 lines
396 B
20 lines
396 B
|
4 years ago
|
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
|
||
|
|
}
|