localpresketchlistrequest.go 995 B

1234567891011121314151617181920212223242526272829303132
  1. package http_model
  2. type LocalPreSketchListRequest struct {
  3. PageSize int `json:"page_size"`
  4. PageNum int `json:"page_num"`
  5. ProjectId string `json:"project_id"` // 项目ID
  6. ScriptStatus int `json:"script_status"` // 稿件状态,10初稿待审
  7. EnterpriseId string `json:"enterprise_id"`
  8. SortField []string `json:"sort_field,omitempty"`
  9. SortOrder []string `json:"sort_order,omitempty"`
  10. Others string `json:"others,omitempty"`
  11. }
  12. type GetLocalSketchTaskListData struct {
  13. TasksketchList []*LocalTasksketchInfo `json:"task_list"`
  14. Total string `json:"total"`
  15. }
  16. type LocalTasksketchInfo struct {
  17. Task *LocaLTaskInfo `json:"task_info"`
  18. DDl string `json:"ddl"`
  19. }
  20. func NewLocalPreSketchListRequest() *LocalPreSketchListRequest {
  21. return new(LocalPreSketchListRequest)
  22. }
  23. func NewLocalPreSketchListResponse() *CommonResponse {
  24. resp := new(CommonResponse)
  25. resp.Data = new(GetSketchTaskListData)
  26. return resp
  27. }