re_bill_selection_task_preview.go 911 B

12345678910111213141516171819202122
  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. EnterpriseId string `json:"enterpriseId"`
  8. SubAccountId int64 `json:"subAccountId"`
  9. SelectionId string `json:"selectionId"`
  10. SelectionPlatform int64 `json:"selectionPlatform"`
  11. SelectionStatus int64 `json:"selectionStatus"`
  12. CreatedAt string `json:"createdAt"`
  13. TaskDdl string `json:"taskDdl"`
  14. //SampleNum int64 `json:"sampleNum"` // 样品数量
  15. Reward float64 `json:"reward"` // 悬赏池总金额
  16. //EnrollNum int64 `json:"enrollNum"` // 报名数量
  17. //ChooseNum int64 `json:"chooseNum"` // 已选数量
  18. CashAmount float64 `json:"cashAmount"` // 实际兑现金额
  19. CreatorName string `json:"creatorName"`
  20. }