re_local_task_preview.go 925 B

12345678910111213141516171819202122232425
  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. EnterpriseId string `json:"enterpriseId"`
  9. SubAccountId int64 `json:"subAccountId"`
  10. LocalId string `json:"localId"`
  11. LocalPlatform int64 `json:"localPlatform"`
  12. LocalStatus int64 `json:"localStatus"`
  13. EstimatedCost float64 `json:"estimatedCost"` // 任务成本
  14. LocalForm int64 `json:"localForm"`
  15. ContentType int64 `json:"contentType"`
  16. NeedReview int64 `json:"needReview"`
  17. NeedQuality int64 `json:"needQuality"`
  18. NeedCalculate int64 `json:"needCalculate"`
  19. CreatorName string `json:"creatorName"`
  20. LocalType int64 `json:"localType"`
  21. CreatedAt string `json:"createdAt"`
  22. Tools string `json:"tools"`
  23. }