namespace AmrControl.Dto { /// /// 移动车辆到指定位置 /// public class MoveCarToPosDTO { /// /// 工位编号 /// public string stanCode { get; set; } /// /// 车辆编号 /// public string carId { get; set;} /// /// 新位置X /// public int x { get; set; } /// /// 新位置Y /// public int y { get; set; } } }