re_task_default_public.go 1.1 KB

123456789101112131415161718192021222324252627
  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. StoreName string `json:"storeName"`
  8. StoreLocation string `json:"storeLocation"`
  9. StoreId int64 `json:"storeId"`
  10. TeamBuyingId int64 `json:"teamBuyingId"`
  11. EnterpriseId string `json:"enterpriseId"`
  12. SubAccountId int64 `json:"subAccountId"`
  13. TaskId string `json:"taskId"`
  14. TaskType int64 `json:"taskType"` // 任务类型 1品牌种草 2本地生活
  15. Platform int64 `json:"platform"`
  16. TaskForm int64 `json:"taskForm"` // 任务形式
  17. ContentType int64 `json:"contentType"` // 内容形式
  18. CreatorName string `json:"creatorName"`
  19. NoSketchNum int64 `json:"sampleNum"` // 未传初稿
  20. NoLinkNum int64 `json:"reward"` // 未发作品
  21. NoDataNum int64 `json:"enrollNum"` // 未传数据
  22. EndCooperationNum int64 `json:"chooseNum"` // 终止合作
  23. }