re_bill_selection_task_preview.go 961 B

1234567891011121314151617181920212223
  1. package vo
  2. type ReBillSelectionTaskPreview struct {
  3. ProductId int64 `json:"productId"`
  4. MainImage string `json:"mainImage"`
  5. ProductName string `json:"productName"`
  6. ProductPrice float64 `json:"productPrice"`
  7. SelectionName string `json:"selectionName"`
  8. EnterpriseId string `json:"enterpriseId"`
  9. SubAccountId int64 `json:"subAccountId"`
  10. SelectionId string `json:"selectionId"`
  11. SelectionPlatform int64 `json:"selectionPlatform"`
  12. SelectionStatus int64 `json:"selectionStatus"`
  13. CreatedAt string `json:"createdAt"`
  14. TaskDdl string `json:"taskDdl"`
  15. //SampleNum int64 `json:"sampleNum"` // 样品数量
  16. Reward float64 `json:"reward"` // 悬赏池总金额
  17. //EnrollNum int64 `json:"enrollNum"` // 报名数量
  18. //ChooseNum int64 `json:"chooseNum"` // 已选数量
  19. CashAmount float64 `json:"cashAmount"` // 实际兑现金额
  20. CreatorName string `json:"creatorName"`
  21. }