14 lines
537 B
Go
14 lines
537 B
Go
package simulationdto
|
|
|
|
import (
|
|
"joylink.club/bj-rtsts-server/dto/request_proto"
|
|
)
|
|
|
|
// 道岔操作请求DTO
|
|
type TurnoutOperationReqDto struct {
|
|
SimulationId string `form:"simulationId" json:"simulationId" binding:"required"`
|
|
MapId int32 `json:"mapId" from:"mapId" binding:"required"`
|
|
DeviceId string `form:"id" json:"id" binding:"required"`
|
|
Operation request_proto.Turnout_Operation `form:"operation" json:"operation" binding:"required"`
|
|
}
|