- package home
- type OverallIndexResp struct {
- Repair *Overall `json:"repair"` //维修
- Water *Overall `json:"water"` //水费
- Electricity *Overall `json:"electricity"` //电费
- Ignition *Overall `json:"ignition"` //燃动
- }
- type Overall struct {
- Budget float64 `json:"budget"` //预算
- Actual float64 `json:"actual"` //实际
- LastActual float64 `json:"lastActual"` //上年实际
- SingleCow float64 `json:"singleCow"` //单头牛
- Center string `gorm:"column:center"`
- }
|