1234567891011121314151617181920212223 |
- package http
- type StatementResp struct {
- Pasture []string `json:"pasture"`
- NowYear []float64 `json:"nowYear"`
- LastYear []float64 `json:"lastYear"`
- All float64 `json:"all"`
- Line float64 `json:"line"`
- }
- type GetWaterRateByPastureResp struct {
- Pasture []string `json:"pasture"`
- Actual []float64 `json:"actual"`
- Line float64 `json:"line"`
- }
- type GetWaterRateCompleteByPastureResp struct {
- Pasture []string `json:"pasture"`
- Actual []float64 `json:"actual"`
- Budget []float64 `json:"budget"`
- Complete []float64 `json:"complete"`
- Line float64 `json:"line"`
- }
|