23 lines
737 B
Go
23 lines
737 B
Go
package response
|
|
|
|
import "cs-agent/internal/pkg/enums"
|
|
|
|
type TicketResolutionCodeResponse struct {
|
|
ID int64 `json:"id"`
|
|
Name string `json:"name"`
|
|
Code string `json:"code"`
|
|
SortNo int `json:"sortNo"`
|
|
Status enums.Status `json:"status"`
|
|
Remark string `json:"remark"`
|
|
}
|
|
|
|
type TicketPriorityConfigResponse struct {
|
|
ID int64 `json:"id"`
|
|
Name string `json:"name"`
|
|
SortNo int `json:"sortNo"`
|
|
FirstResponseMinutes int `json:"firstResponseMinutes"`
|
|
ResolutionMinutes int `json:"resolutionMinutes"`
|
|
Status enums.Status `json:"status"`
|
|
Remark string `json:"remark"`
|
|
}
|