system_task_statistics.go 257 字节 原文件 审查 历史 永久链接 1 2 3 4 5 6 7 8 9 10 11 package domain // 系统任务统计 type SystemTaskStatistics struct { // 系统已发布任务 Released int64 `json:"released"` // 系统进行中任务 Underway int64 `json:"underway"` // 系统已完成任务 Completed int64 `json:"completed"` }