chart.go 602 B

1234567891011121314151617181920212223
  1. package http
  2. type StatementResp struct {
  3. Pasture []string `json:"pasture"`
  4. NowYear []float64 `json:"nowYear"`
  5. LastYear []float64 `json:"lastYear"`
  6. All float64 `json:"all"`
  7. Line float64 `json:"line"`
  8. }
  9. type GetWaterRateByPastureResp struct {
  10. Pasture []string `json:"pasture"`
  11. Actual []float64 `json:"actual"`
  12. Line float64 `json:"line"`
  13. }
  14. type GetWaterRateCompleteByPastureResp struct {
  15. Pasture []string `json:"pasture"`
  16. Actual []float64 `json:"actual"`
  17. Budget []float64 `json:"budget"`
  18. Complete []float64 `json:"complete"`
  19. Line float64 `json:"line"`
  20. }