123456789101112131415161718192021222324252627 |
- package vo
- type ReBillLocalTaskPreview struct {
- MainImage string `json:"mainImage"`
- StoreName string `json:"storeName"`
- StoreLocation string `json:"storeLocation"`
- StoreId int64 `json:"storeId"`
- TeamBuyingId int64 `json:"teamBuyingId"`
- LocalName string `json:"localName"`
- EnterpriseId string `json:"enterpriseId"`
- SubAccountId int64 `json:"subAccountId"`
- LocalId string `json:"localId"`
- LocalPlatform int64 `json:"localPlatform"`
- LocalStatus int64 `json:"localStatus"`
- LocalForm int64 `json:"localForm"`
- ContentType int64 `json:"contentType"`
- EstimatedCost float64 `json:"estimatedCost"` // 应付金额
- CashAmount float64 `json:"cashAmount"` // 实际结算金额
- //NeedReview int64 `json:"needReview"`
- //NeedQuality int64 `json:"needQuality"`
- //NeedCalculate int64 `json:"needCalculate"`
- CreatorName string `json:"creatorName"`
- LocalType int64 `json:"localType"`
- CreatedAt string `json:"createdAt"`
- //Tools string `json:"tools"`
- }
|