fix
zhangqian
2023-10-30 10c65da3d2af7056f48d9301e83f53f102f76e18
model/response/common.go
@@ -31,10 +31,11 @@
}
type TaskResponse struct {
   Tasks     []*TaskData
   TaskCount int64
   Workers   []*common.ProcedureWorker `json:"workers"` // 人员列表
   Prompt    conf.Prompt
   Tasks         []*TaskData               //任务列表
   TaskCount     int64                     //任务数量
   Workers       []*common.ProcedureWorker `json:"workers"` // 人员列表
   Prompt        conf.Prompt               //提示语
   ChannelAmount int                       //通道数量
}
type Config struct {
@@ -63,3 +64,8 @@
   CountDownMinute int64 //倒计时 分
   ShowCountDown   bool  //是否展示倒计时
}
type Message struct {
   Event string
   Data  interface{}
}