101577f163
- Updated import paths in multiple service files to reflect the new agent-desk module. - Added a new configuration file for agent-desk in the Docker setup.
27 lines
596 B
Go
27 lines
596 B
Go
package request
|
|
|
|
import "agent-desk/internal/pkg/enums"
|
|
|
|
type QuickReplyListRequest struct {
|
|
GroupName string `json:"groupName"`
|
|
Keyword string `json:"keyword"`
|
|
Status int `json:"status"`
|
|
}
|
|
|
|
type CreateQuickReplyRequest struct {
|
|
GroupName string `json:"groupName"`
|
|
Title string `json:"title"`
|
|
Content string `json:"content"`
|
|
Status enums.Status `json:"status"`
|
|
SortNo int `json:"sortNo"`
|
|
}
|
|
|
|
type UpdateQuickReplyRequest struct {
|
|
ID int64 `json:"id"`
|
|
CreateQuickReplyRequest
|
|
}
|
|
|
|
type DeleteQuickReplyRequest struct {
|
|
ID int64 `json:"id"`
|
|
}
|