re_billable_info.go 453 B

12345678910111213
  1. package vo
  2. type ReBillableInfo struct {
  3. ProductId int64 `json:"productId"`
  4. MainImage string `json:"mainImage"`
  5. ProductName string `json:"productName"`
  6. ProductPrice float64 `json:"productPrice"`
  7. Platform int64 `json:"platform"`
  8. CreatorName string `json:"creatorName"`
  9. TaskType string `json:"taskType"` // 任务类型
  10. BillableAmount float64 `json:"billableAmount"`
  11. TaskId string `json:"taskId"`
  12. }