re_bill_local_task_preview.go 993 B

1234567891011121314151617181920212223242526
  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. 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. LocalForm int64 `json:"localForm"`
  14. ContentType int64 `json:"contentType"`
  15. EstimatedCost float64 `json:"estimatedCost"` // 应付金额
  16. CashAmount float64 `json:"cashAmount"` // 实际结算金额
  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. }