| 123456789101112131415161718192021222324252627282930 |
- package dto
- type CityInfoParams struct {
- CityId uint64 `json:"city_id"`
- }
- type CityInfoResponse struct {
- Result CityInfoResult
- }
- type CityInfoResult struct {
- ID uint64 `json:"id"`
- MapCode uint64 `json:"map_code"`
- Name string `json:"name"`
- Shortname string `json:"shortname"`
- BikeOpen int `json:"bike_open"`
- CarOpen int `json:"car_open"`
- OpenTime int `json:"open_time"`
- Mode int `json:"mode"`
- BailMode int `json:"bail_mode"`
- IsCustom int `json:"is_custom"`
- IsStop int `json:"is_stop"`
- StopReason string `json:"stop_reason"`
- StopStartTime int `json:"stop_start_time"`
- StopEndTime int `json:"stop_end_time"`
- OpMode int `json:"op_mode"`
- CreateTime int `json:"create_time"`
- UpdateTime int `json:"update_time"`
- SysUserID int `json:"sys_user_id"`
- SysUserName string `json:"sys_user_name"`
- }
|