fix
zhangqian
2023-10-30 d35a7e51d6360b533a23ca81031ea1f4f60e9861
fix
1个文件已修改
8 ■■■■ 已修改文件
model/request/task.go 8 ●●●● 补丁 | 查看 | 原始文档 | blame | 历史
model/request/task.go
@@ -34,10 +34,10 @@
// TaskListByChannel 按channel返回任务列表请求参数
type TaskListByChannel struct {
    Offset  int       `json:"offset,omitempty"` //默认0
    Limit   int       `json:"limit,omitempty"`  //默认3
    Type    QueryType `json:"type,omitempty"`   //1 未完成 2 今天未完成 3 已完成
    Channel *int32    `json:"channel"`          //通道号。不传取全部的
    Offset  int       `json:"offset,omitempty" form:"offset"` //默认0
    Limit   int       `json:"limit,omitempty" form:"limit"`   //默认3
    Type    QueryType `json:"type,omitempty" form:"type"`     //1 未完成 2 今天未完成 3 已完成
    Channel *int32    `json:"channel" form:"channel"`         //通道号。不传取全部的
}
type QueryType int