using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace WIDESEAWCS_DTO.RGV.FOURBOT { public class FOURBOTStorageStatusNotifyInfo { public long messageID { get; set; } public int messageType { get; set; } public string warehouseID { get; set; } public string createTime { get; set; } public FOURBOTStorageStatusNotify content { get; set; } } /// /// 四向车储位状态更新消息通知 /// public class FOURBOTStorageStatusNotify { /// /// 库区号 /// public string regionCode { get; set; } /// /// 储位编号列表 /// public List storageCode { get; set; } = new List(); /// /// 状态值 /// 0-解除禁止通行 /// 1-禁止通行 /// public int disable { get; set; } } }