using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace WIDESEAWCS_DTO.RGV.FOURBOT { /// /// 四向车站点容器上架 /// public class FOURBOToccupyStation { /// /// 站点编码 /// public string stationCode { get; set; } /// /// 托盘号 /// public string podID { get; set; } /// /// 托盘规格名称 /// public string layoutID { get; set; } /// /// 托盘重量(kg) /// public float podWeight { get; set; } = 0.0f; /// /// 托盘高度(mm) /// public int podHeight { get; set; } = 0; /// /// 托盘朝向(弧度) /// public string podFace { get; set; } /// /// 物料信息 /// public string podExt { get; set; } = ""; /// /// 容器列表(JSON序列化) /// public object podInfo { get; set; } = ""; } /// /// 容器列表DTO(podInfo嵌套对象) /// public class PodInfoDto { /// /// 容器号 /// public string podID { get; set; } /// /// 位置类型 /// 0-储位 /// 99-库外 /// public int positionType { get; set; } /// /// 储位号 /// public string storeID { get; set; } /// /// 规格编号 /// public string layoutID { get; set; } /// /// 容器类型 /// 2-托盘 /// public int podType { get; set; } = 2; /// /// 长 /// public int? podLength { get; set; } /// /// 宽 /// public int? podWidth { get; set; } /// /// 高 /// public int? podHeight { get; set; } /// /// 重 /// public int? podWeight { get; set; } /// /// 朝向 /// public string podFace { get; set; } } }