using iWare.Wms.Core.Util.LowCode.Dto; using System; namespace iWare.Wms.Application { /// /// 托盘信息输出参数 /// public class WmsContainerDto { /// /// 编号 /// public string Containercode { get; set; } /// /// 类型 /// public iWare.Wms.Core.Enum.ContainerType Containertype { get; set; } /// /// 托盘状态 /// public iWare.Wms.Core.Enum.ContainerStatus Containerstatus { get; set; } /// /// 长度 /// public decimal Speclength { get; set; } /// /// 宽度 /// public decimal Specwidth { get; set; } /// /// 高度 /// public decimal Specheight { get; set; } /// /// 限长 /// public decimal Limitlength { get; set; } /// /// 限宽 /// public decimal Limitwidth { get; set; } /// /// 限高 /// public decimal Limitheight { get; set; } /// /// 载重上限 /// public decimal Maxweight { get; set; } /// /// 父托盘ID /// public long Parentcontainerid { get; set; } /// /// 是否空托 /// public iWare.Wms.Core.YesOrNot Isemptycontainer { get; set; } /// /// 扩展字段1 /// public string Extendedfields1 { get; set; } /// /// 扩展字段2 /// public string Extendedfields2 { get; set; } /// /// 扩展字段3 /// public string Extendedfields3 { get; set; } /// /// Id主键 /// public long Id { get; set; } } }