default_search_param.go 637 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. ProjectType int64 `json:"project_type"` // 任务类型,0全部 1品牌种草,2本地生活
  9. DefaultType int64 `json:"default_type"` // 违约类型 1未传初稿 2未发作品 3未传数据 4终止合作 5已解约
  10. TaskId string `json:"task_id"` // 任务ID
  11. //ProjectName string `json:"project_name"` // 任务标题
  12. //CreatorName string `json:"creator_name"` // 创建者
  13. }