mirror of
https://github.com/ctwj/urldb.git
synced 2025-11-25 03:15:04 +08:00
25 lines
943 B
Go
25 lines
943 B
Go
package dto
|
|
|
|
// WechatBotConfigRequest 微信公众号机器人配置请求
|
|
type WechatBotConfigRequest struct {
|
|
Enabled bool `json:"enabled"`
|
|
AppID string `json:"app_id"`
|
|
AppSecret string `json:"app_secret"`
|
|
Token string `json:"token"`
|
|
EncodingAesKey string `json:"encoding_aes_key"`
|
|
WelcomeMessage string `json:"welcome_message"`
|
|
AutoReplyEnabled bool `json:"auto_reply_enabled"`
|
|
SearchLimit int `json:"search_limit"`
|
|
}
|
|
|
|
// WechatBotConfigResponse 微信公众号机器人配置响应
|
|
type WechatBotConfigResponse struct {
|
|
Enabled bool `json:"enabled"`
|
|
AppID string `json:"app_id"`
|
|
AppSecret string `json:"app_secret"`
|
|
Token string `json:"token"`
|
|
EncodingAesKey string `json:"encoding_aes_key"`
|
|
WelcomeMessage string `json:"welcome_message"`
|
|
AutoReplyEnabled bool `json:"auto_reply_enabled"`
|
|
SearchLimit int `json:"search_limit"`
|
|
} |