| 123456789101112131415161718192021222324252627282930 |
- 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"`
- }
|