1234567891011121314151617181920 |
- package home
- type MonthBudget struct {
- MonthBudget float64 `gorm:"column:monthBudget"`
- FeeType string `gorm:"column:feeType"`
- Center string `gorm:"column:center"`
- }
- type ThisYearActual struct {
- SumPrice float64 `gorm:"column:sumPrice"`
- FeeType string `gorm:"column:feeType"`
- Center string `gorm:"column:center"`
- }
- type GetExpenseResp struct {
- Repair []*Overall `json:"repair"` //维修
- Water []*Overall `json:"water"` //水费
- Electricity []*Overall `json:"electricity"` //电费
- Ignition []*Overall `json:"ignition"` //燃动
- }
|