2026-04-09 10:01:23 +08:00
|
|
|
package response
|
|
|
|
|
|
2026-08-21 00:41:07 +08:00
|
|
|
import "code.tczkiot.com/wlw/ai-agent/internal/pkg/enums"
|
|
|
|
|
|
|
|
|
|
type AgentUserOptionResponse struct {
|
|
|
|
|
ID int64 `json:"id"`
|
|
|
|
|
Username string `json:"username"`
|
|
|
|
|
Nickname string `json:"nickname"`
|
|
|
|
|
Avatar string `json:"avatar"`
|
|
|
|
|
}
|
2026-04-09 10:01:23 +08:00
|
|
|
|
|
|
|
|
type AgentProfileResponse struct {
|
|
|
|
|
ID int64 `json:"id"`
|
2026-08-28 22:23:13 +08:00
|
|
|
UserID int64 `json:"user_id"`
|
|
|
|
|
TeamID int64 `json:"team_id"`
|
|
|
|
|
TeamName string `json:"team_name,omitempty"`
|
2026-04-09 10:01:23 +08:00
|
|
|
Username string `json:"username,omitempty"`
|
|
|
|
|
Nickname string `json:"nickname,omitempty"`
|
2026-08-28 22:23:13 +08:00
|
|
|
AgentCode string `json:"agent_code"`
|
|
|
|
|
DisplayName string `json:"display_name"`
|
2026-04-09 10:01:23 +08:00
|
|
|
Avatar string `json:"avatar"`
|
2026-08-28 22:23:13 +08:00
|
|
|
ServiceStatus enums.ServiceStatus `json:"service_status"`
|
|
|
|
|
MaxConcurrentCount int `json:"max_concurrent_count"`
|
|
|
|
|
PriorityLevel int `json:"priority_level"`
|
|
|
|
|
AutoAssignEnabled bool `json:"auto_assign_enabled"`
|
|
|
|
|
ReceiveOfflineMessage bool `json:"receive_offline_message"`
|
|
|
|
|
LastOnlineAt string `json:"last_online_at,omitempty"`
|
|
|
|
|
LastStatusAt string `json:"last_status_at,omitempty"`
|
2026-04-09 10:01:23 +08:00
|
|
|
Remark string `json:"remark"`
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
type AgentTeamResponse struct {
|
|
|
|
|
ID int64 `json:"id"`
|
|
|
|
|
Name string `json:"name"`
|
2026-08-28 22:23:13 +08:00
|
|
|
LeaderUserID int64 `json:"leader_user_id"`
|
|
|
|
|
LeaderUsername string `json:"leader_username,omitempty"`
|
|
|
|
|
LeaderNickname string `json:"leader_nickname,omitempty"`
|
2026-04-09 10:01:23 +08:00
|
|
|
Status enums.Status `json:"status"`
|
|
|
|
|
Description string `json:"description"`
|
|
|
|
|
Remark string `json:"remark"`
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
type AgentTeamScheduleResponse struct {
|
2026-04-29 15:09:35 +08:00
|
|
|
ID int64 `json:"id"`
|
2026-08-28 22:23:13 +08:00
|
|
|
TeamID int64 `json:"team_id"`
|
|
|
|
|
TeamName string `json:"team_name,omitempty"`
|
|
|
|
|
StartAt string `json:"start_at"`
|
|
|
|
|
EndAt string `json:"end_at"`
|
2026-04-29 15:09:35 +08:00
|
|
|
Remark string `json:"remark"`
|
2026-04-09 10:01:23 +08:00
|
|
|
}
|
2026-04-29 19:03:58 +08:00
|
|
|
|
|
|
|
|
type AgentTeamScheduleBatchPreviewResponse struct {
|
|
|
|
|
Total int `json:"total"`
|
|
|
|
|
Conflict bool `json:"conflict"`
|
|
|
|
|
Items []AgentTeamScheduleBatchPreviewItem `json:"items"`
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
type AgentTeamScheduleBatchPreviewItem struct {
|
2026-08-28 22:23:13 +08:00
|
|
|
TeamID int64 `json:"team_id"`
|
|
|
|
|
TeamName string `json:"team_name"`
|
2026-04-29 19:03:58 +08:00
|
|
|
Date string `json:"date"`
|
|
|
|
|
Weekday int `json:"weekday"`
|
2026-08-28 22:23:13 +08:00
|
|
|
StartAt string `json:"start_at"`
|
|
|
|
|
EndAt string `json:"end_at"`
|
2026-04-29 19:03:58 +08:00
|
|
|
Remark string `json:"remark"`
|
|
|
|
|
Conflict bool `json:"conflict"`
|
2026-08-28 22:23:13 +08:00
|
|
|
ConflictReason string `json:"conflict_reason"`
|
2026-04-29 19:03:58 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
type AgentTeamScheduleBatchGenerateResponse struct {
|
|
|
|
|
Created int `json:"created"`
|
|
|
|
|
}
|