1234567891011121314151617181920212223242526272829303132333435 |
- package http_model
- type TasksketchlistRequest struct {
- PageSize int `json:"page_size"`
- PageNum int `json:"page"`
- ProjectId string `json:"project_id"` // 项目ID
- ScriptStatus int `json:"script_status"` // 稿件状态
- SortField []string `json:"sort_field,omitempty"`
- SortOrder []string `json:"sort_order,omitempty"`
- Others string `json:"others,omitempty"`
- }
- type GetsketchtaskListData struct {
- TasksketchList []*Tasksketchinfo `json:"task_list"`
- Total string `json:"total"`
- }
- type Tasksketchinfo struct {
- Task *TaskInfo `json:"task_info"`
- SubmitAt string `json:"submit_at"` // 提交时间
- AgreeAt string `json:"agree_at"`
- Operator string `json:"operator"`
- SketchId int `json:"sketch_id"` //初稿ID
- SketchType int `json:"sketch_type"`
- }
- func NewTasksketchlistRequest() *TasksketchlistRequest {
- return new(TasksketchlistRequest)
- }
- func NewTasksketchlistResponse() *CommonResponse {
- resp := new(CommonResponse)
- resp.Data = new(GetsketchtaskListData)
- return resp
- }
|