1234567891011121314151617181920212223242526 |
- package http_model
- type TaskLinkListRequest struct {
- PageSize int64 `json:"page_size"`
- PageNum int64 `json:"page_num"`
- ProjectId string `json:"project_id"` // 项目ID
- TaskId string `json:"task_id"` // 任务ID
- StrategyId string `json:"strategy_id"` // 策略ID
- SketchStatus string `json:"sketch_status"` // 稿件状态
- PlatformNickname string `json:"platform_nickname"` // 账号昵称
- }
- type TaskLinkListData struct {
- TaskLinkPreview []*TaskLinkPreview `json:"project_link_pre_view"`
- Total string `json:"total"`
- }
- func NewTaskLinkListRequest() *TaskLinkListRequest {
- return new(TaskLinkListRequest)
- }
- func NewTaskLinkListResponse() *CommonResponse {
- resp := new(CommonResponse)
- resp.Data = new(ProjectTaskListData)
- return resp
- }
|