namespace AmrControl.Dto { /// /// 目标小车移动都新位置 /// public class JgrMovingDto { /// /// 车的编号 /// public string JgrSN { get; set; } /// /// 新位置X /// public int NewPositionX { get; set; } /// /// 新位置Y /// public int NewPositionY { get; set; } } }