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; }
|
}
|
/// <summary>
|
/// 四向车储位状态更新消息通知
|
/// </summary>
|
public class FOURBOTStorageStatusNotify
|
{
|
/// <summary>
|
/// 库区号
|
/// </summary>
|
public string regionCode { get; set; }
|
|
/// <summary>
|
/// 储位编号列表
|
/// </summary>
|
public List<string> storageCode { get; set; } = new List<string>();
|
|
/// <summary>
|
/// 状态值
|
/// 0-解除禁止通行
|
/// 1-禁止通行
|
/// </summary>
|
public int disable { get; set; }
|
}
|
}
|