re_bill_local_task_preview.go 1.0 KB

123456789101112131415161718192021222324252627
  1. package vo
  2. type ReBillLocalTaskPreview 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. LocalForm int64 `json:"localForm"`
  15. ContentType int64 `json:"contentType"`
  16. EstimatedCost float64 `json:"estimatedCost"` // 应付金额
  17. CashAmount float64 `json:"cashAmount"` // 实际结算金额
  18. //NeedReview int64 `json:"needReview"`
  19. //NeedQuality int64 `json:"needQuality"`
  20. //NeedCalculate int64 `json:"needCalculate"`
  21. CreatorName string `json:"creatorName"`
  22. LocalType int64 `json:"localType"`
  23. CreatedAt string `json:"createdAt"`
  24. //Tools string `json:"tools"`
  25. }