re_project_task_preview.go 1.2 KB

1234567891011121314151617181920212223242526272829
  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. ProjectName string `json:"projectName"`
  8. EnterpriseId string `json:"enterpriseId"`
  9. SubAccountId int64 `json:"subAccountId"`
  10. ProjectId string `json:"projectId"`
  11. ProjectPlatform int64 `json:"projectPlatform"`
  12. ProjectStatus int64 `json:"projectStatus"`
  13. EstimatedCost float64 `json:"estimatedCost"` // 任务成本
  14. ProjectForm int64 `json:"projectForm"`
  15. ContentType int64 `json:"contentType"`
  16. NeedFilter int64 `json:"needFilter"` // 待筛选
  17. NeedReview int64 `json:"needReview"` // 待审稿
  18. NeedQuality int64 `json:"needQuality"` // 待质检
  19. NeedCalculate int64 `json:"needCalculate"` // 待结算
  20. NeedDelivery int64 `json:"needDelivery"` // 待发货
  21. NeedReceive int64 `json:"needReceive"` // 待签收
  22. Received int64 `json:"received"` // 已签收
  23. CreatorName string `json:"creatorName"`
  24. ProjectType int64 `json:"projectType"`
  25. CreatedAt string `json:"createdAt"`
  26. Tools string `json:"tools"`
  27. }