re_task_default_public.go 1.1 KB

12345678910111213141516171819202122232425262728
  1. package vo
  2. type ReTaskDefaultPublic struct {
  3. ProductId int64 `json:"productId"`
  4. MainImage string `json:"mainImage"`
  5. ProductName string `json:"productName"`
  6. ProductPrice float64 `json:"productPrice"`
  7. TaskName string `json:"taskName"`
  8. StoreName string `json:"storeName"`
  9. StoreLocation string `json:"storeLocation"`
  10. StoreId int64 `json:"storeId"`
  11. TeamBuyingId int64 `json:"teamBuyingId"`
  12. EnterpriseId string `json:"enterpriseId"`
  13. SubAccountId int64 `json:"subAccountId"`
  14. TaskId string `json:"taskId"`
  15. TaskType int64 `json:"taskType"` // 任务类型 1品牌种草 2本地生活
  16. Platform int64 `json:"platform"`
  17. TaskForm int64 `json:"taskForm"` // 任务形式
  18. ContentType int64 `json:"contentType"` // 内容形式
  19. CreatorName string `json:"creatorName"`
  20. NoSketchNum int64 `json:"sampleNum"` // 未传初稿
  21. NoLinkNum int64 `json:"reward"` // 未发作品
  22. NoDataNum int64 `json:"enrollNum"` // 未传数据
  23. EndCooperationNum int64 `json:"chooseNum"` // 终止合作
  24. }