default_search_param.go 662 B

123456789101112131415
  1. package vo
  2. type DefaultSearchParam struct {
  3. EnterpriseId string `json:"enterprise_id"`
  4. SubAccountId int64 `json:"sub_account_id"`
  5. Page int `json:"page"`
  6. PageSize int `json:"page_size"`
  7. Platform int64 `json:"platform"`
  8. TaskType int64 `json:"task_type"` // 任务类型,0全部 1品牌种草,2本地生活
  9. DefaultType int64 `json:"default_type"` // 违约类型 1未传初稿 2未发作品 3未传数据 4终止合作 5已解约
  10. Others string `json:"others"` // 任务标题/任务ID/创建者
  11. TaskId string `json:"task_id"` // 任务ID
  12. TalentName string `json:"talent_name"` // 达人昵称
  13. }