re_bill_selection_info.go 647 B

1234567891011121314151617
  1. package vo
  2. type ReBillSelectionInfo struct {
  3. ProductId int64 `json:"productId"`
  4. MainImage string `json:"mainImage"`
  5. ProductName string `json:"productName"`
  6. ProductPrice float64 `json:"productPrice"`
  7. SelectionId string `json:"selectionId"`
  8. SelectionPlatform int64 `json:"selectionPlatform"`
  9. BillStatus int64 `json:"billStatus"`
  10. CreatedAt string `json:"createdAt"`
  11. TaskDdl string `json:"taskDdl"`
  12. Reward float64 `json:"reward"` // 悬赏池总金额
  13. ActualAmount float64 `json:"actualAmount"` // 实际兑现金额
  14. CreatorName string `json:"creatorName"`
  15. }