🎨 添加图库和客服插件(有问题-待修改)

This commit is contained in:
2025-05-14 16:51:31 +08:00
parent 5faff4afa0
commit a5ae680f94
41 changed files with 2592 additions and 12 deletions

View File

@@ -0,0 +1,25 @@
package model
type PageInfo struct {
Page int `json:"page" form:"page"`
Limit int `json:"limit" form:"limit"`
Keyword string `json:"keyword" form:"keyword"`
}
type MsgPageInfo struct {
Page int `json:"page" form:"page"`
Limit int `json:"limit" form:"limit"`
FromId int `json:"from_id" form:"from_id"`
}
type AutoPageInfo struct {
Page int `json:"page" form:"page"`
Limit int `json:"limit" form:"limit"`
Keyword string `json:"keyword" form:"keyword"`
ReplyType int `json:"reply_type" form:"reply_type"`
}
type LoginInfo struct {
Account string `json:"account" form:"account"`
Password string `json:"password" form:"password"`
}