123456789101112131415161718192021222324252627282930313233343536373839 |
- package model
- type FeedingHomepageResponse struct {
- Code int32 `json:"code"`
- Msg string `json:"msg"`
- Data []*FeedingHomepageData `json:"data"`
- }
- type FeedingHomepageData struct {
- Cost string `json:"cost"` // "0.00"
- DoneTimes string `json:"doneTimes"` // "23"
- DoneWeight string `json:"doneWeight"` // "0.00"
- MonRateHL string `json:"monRateHL"` // "100.03%"
- MonRateSL string `json:"monRateSL"` // "98.66%"
- MonRateSLR string `json:"monRateSLR"` // "69.59%"
- Montime string `json:"montime"` // "5.41"
- PlanTimes string `json:"planTimes"` // "41"
- PlanWeight string `json:"planWeight"` // "0.00"
- Temtime string `json:"temtime"` // "7.04"
- TotalCost string `json:"totalCost"` // "0.00"
- YesRateHL string `json:"yesRateHL"` // "99.92%"
- YesRateSL string `json:"yesRateSL"` // "99.92%"
- YesRateSLR string `json:"yesRateSLR"` // "72.54%"
- }
- type FeedingManagementResponse struct {
- Code int32 `json:"code"`
- Msg string `json:"msg"`
- Data []*FeedingManagementData `json:"data"`
- }
- type FeedingManagementData struct {
- ActualWeightMinus string `json:"actualweightminus"` // "15456.23"
- CCount string `json:"ccount"` // "147"
- Cost string `json:"cost"` // "0.00"
- DryWeight string `json:"dryweight"` // "0.00"
- TotalCost string `json:"totalcost"` // "0.00"
- TypeA string `json:"typea"` // "11"
- }
|