re_local_task_preview.go 966 B

1234567891011121314151617181920212223242526
  1. package vo
  2. type ReLocalTaskPreview struct {
  3. MainImage string `json:"mainImage"`
  4. StoreName string `json:"storeName"`
  5. StoreLocation string `json:"storeLocation"`
  6. StoreId int64 `json:"storeId"`
  7. TeamBuyingId int64 `json:"teamBuyingId"`
  8. LocalName string `json:"localName"`
  9. EnterpriseId string `json:"enterpriseId"`
  10. SubAccountId int64 `json:"subAccountId"`
  11. LocalId string `json:"localId"`
  12. LocalPlatform int64 `json:"localPlatform"`
  13. LocalStatus int64 `json:"localStatus"`
  14. EstimatedCost float64 `json:"estimatedCost"` // 任务成本
  15. LocalForm int64 `json:"localForm"`
  16. ContentType int64 `json:"contentType"`
  17. NeedReview int64 `json:"needReview"`
  18. NeedQuality int64 `json:"needQuality"`
  19. NeedCalculate int64 `json:"needCalculate"`
  20. CreatorName string `json:"creatorName"`
  21. LocalType int64 `json:"localType"`
  22. CreatedAt string `json:"createdAt"`
  23. Tools string `json:"tools"`
  24. }