- package vo
- type ReBillableInfo struct {
- ProductId int64 `json:"productId"`
- MainImage string `json:"mainImage"`
- ProductName string `json:"productName"`
- ProductPrice float64 `json:"productPrice"`
- Platform int64 `json:"platform"`
- CreatorName string `json:"creatorName"`
- TaskType string `json:"taskType"` // 任务类型
- BillableAmount float64 `json:"billableAmount"`
- TaskId string `json:"taskId"`
- }
|