re_project_task_preview.go 780 B

123456789101112131415161718192021
  1. package vo
  2. type ReProjectTaskPreview 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. ProjectId string `json:"projectId"`
  10. ProjectPlatform int64 `json:"projectPlatform"`
  11. ProjectStatus int64 `json:"projectStatus"`
  12. EstimatedCost float64 `json:"estimatedCost"`
  13. ProjectForm int64 `json:"projectForm"`
  14. ContentType int64 `json:"contentType"`
  15. NeedReview int64 `json:"needReview"`
  16. NeedQuality int64 `json:"needQuality"`
  17. NeedCalculate int64 `json:"needCalculate"`
  18. CreatorName string `json:"creatorName"`
  19. }