using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace WIDESEAWCS_DTO.PDA { /// /// 容器绑定DTO /// public class ContainerbindingDTO { /// /// 载具编号 /// public string VehicleNumber { get; set; } /// /// 零件编号 /// public string materSn { get; set; } /// /// 当前点位 /// public string Position { get; set; } } /// /// 容器解绑DTO /// public class ContainerUnbindingDTO { } }