using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace wcftest.EnumDefine { class BackDate { /// /// 托盘类型 /// public int ContainerType { get; set; } /// /// 设备ID /// public int DevId { get; set; } /// /// 设备名称 /// public string DevName { get; set; } /// /// 类型(默认置位=0,需要空盘=1,满盘运走=2,) /// public int Type { get; set; } } }