using Admin.NET.Core.Util.LowCode.Dto; using System; namespace Admin.NET.Application { /// /// 托盘信息输出参数 /// public class WmsContainerDto { /// /// 编号 /// public string ContainerCode { get; set; } /// /// 类型 /// public Admin.NET.Core.ContainerType ContainerType { get; set; } /// /// 托盘状态 /// public Admin.NET.Core.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 string AssetNo { get; set; } /// /// 托盘分类 /// public Admin.NET.Core.ContainerCategory ContainerCategory { get; set; } /// /// Erp单号 /// public string ErpNo { get; set; } /// /// 是否虚拟 /// public Admin.NET.Core.YesOrNot IsVirtually { get; set; } /// /// 所属车间 /// public Admin.NET.Core.LesWorkShopType WorkShopType { get; set; } /// /// Id主键 /// public long Id { get; set; } /// /// 签核状态 /// public Admin.NET.Core.IssueState IssueState { get; set; } } }