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