2026-04-09 10:01:23 +08:00
|
|
|
package response
|
|
|
|
|
|
2026-05-30 21:19:36 +08:00
|
|
|
import "cs-ai-agent/internal/pkg/enums"
|
2026-04-09 10:01:23 +08:00
|
|
|
|
|
|
|
|
type QuickReplyResponse struct {
|
|
|
|
|
ID int64 `json:"id"`
|
|
|
|
|
GroupName string `json:"groupName"`
|
|
|
|
|
Title string `json:"title"`
|
|
|
|
|
Content string `json:"content"`
|
|
|
|
|
Status enums.Status `json:"status"`
|
|
|
|
|
SortNo int `json:"sortNo"`
|
|
|
|
|
CreatedBy int64 `json:"createdBy"`
|
|
|
|
|
}
|