re_selection_task_preview.go 904 B

1234567891011121314151617181920212223
  1. package vo
  2. import "time"
  3. type ReSelectionTaskPreview struct {
  4. ProductId int64 `json:"productId"`
  5. MainImage string `json:"mainImage"`
  6. ProductName string `json:"productName"`
  7. ProductPrice float64 `json:"productPrice"`
  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 time.Time `json:"createdAt"`
  14. TaskDdl time.Time `json:"taskDdl"`
  15. SampleNum int64 `json:"sampleNum"` // 样品数量
  16. Reward float64 `json:"reward"` // 悬赏池总金额
  17. EnrollNum int64 `json:"enrollNum"` // 报名数量
  18. ChooseNum int64 `json:"chooseNum"` // 已选数量
  19. CreatorName string `json:"creatorName"`
  20. }