1234567891011121314151617181920 |
- package vo
- type ReTaskDefaultTarget struct {
- ProductId int64 `json:"productId"`
- MainImage string `json:"mainImage"`
- ProductName string `json:"productName"`
- ProductPrice float64 `json:"productPrice"`
- EnterpriseId string `json:"enterpriseId"`
- SubAccountId int64 `json:"subAccountId"`
- TaskId string `json:"taskId"`
- TaskType int64 `json:"taskType"` // 任务类型 1品牌种草 2本地生活
- Platform int64 `json:"platform"`
- TaskForm int64 `json:"taskForm"` // 任务形式
- ContentType int64 `json:"contentType"` // 内容形式
- CreatorName string `json:"creatorName"`
- Tools string `json:"tools"` // 工具选择
- EndCooperationNum int64 `json:"chooseNum"` // 终止合作
- }
|