- package request
- type GetAudioList struct {
- PageInfo
- Keyword string `form:"keyword"` // 关键字
- LocomotiveNumber string `gorm:"index;type:varchar(255);not null;default:'';comment:机车号" form:"locomotiveNumber"` // 机车号
- TrainNumber string `gorm:"index;type:varchar(255);not null;default:'';comment:车次" form:"trainNumber"` // 车次
- DriverNumber string `gorm:"index;type:varchar(255);not null;default:'';comment:司机号" form:"driverNumber"` // 司机号
- StationNumber string `gorm:"index;type:varchar(255);not null;default:'';comment:车站号" form:"stationNumber"` // 车站号
- }
- type ProcessAudio struct {
- ID uint `json:"id" binding:"required"`
- }
|