package response import "server/dao" type Vehicle struct { dao.Vehicle } type VehicleList struct { Total int64 `json:"total"` List []dao.Vehicle `json:"list"` } type VehicleRecord struct { dao.VehicleRecord } type VehicleRecordList struct { Total int64 `json:"total"` List []dao.VehicleRecord `json:"list"` } type FeeConfig struct { dao.FeeConfig } type FeeConfigList struct { Total int64 `json:"total"` List []dao.FeeConfig `json:"list"` }