using CMS.Plugin.HIAWms.Domain.Shared.Enums; using MiniExcelLibs.Attributes; namespace CMS.Plugin.HIAWms.Application.Contracts.Dtos.WmsContainer { /// /// WmsContainers导出模型 /// public class WmsContainersExportModel { /// /// WmsContainer导出模型 /// public class WorkSectionExportModel { /// /// 托盘编号 /// [ExcelColumn(Name = "托盘编号", Width = 25)] public string ContainerNo { get; set; } /// /// 托盘类型 /// [ExcelColumn(Name = "托盘类型", Width = 25)] public ContainerTypeEnum ContainerType { get; set; } /// /// 托盘状态 /// [ExcelColumn(Name = "托盘状态", Width = 25)] public ContainerStatusEnum ContainerStatus { get; set; } /// /// 长度 /// [ExcelColumn(Name = "长度", Width = 25)] public decimal? SpecLength { get; set; } /// /// 宽度 /// [ExcelColumn(Name = "宽度", Width = 25)] public decimal? SpecWidth { get; set; } /// /// 高度 /// [ExcelColumn(Name = "高度", Width = 25)] public decimal? SpecHeight { get; set; } /// /// 限长 /// [ExcelColumn(Name = "限长", Width = 25)] public decimal? LimitLength { get; set; } /// /// 限宽 /// [ExcelColumn(Name = "限宽", Width = 25)] public decimal? LimitWidth { get; set; } /// /// 限高 /// [ExcelColumn(Name = "限高", Width = 25)] public decimal? LimitHeight { get; set; } /// /// 载重上限 /// [ExcelColumn(Name = "载重上限", Width = 25)] public decimal? MaxWeight { get; set; } /// /// 异常数量 /// [ExcelColumn(Name = "异常数量", Width = 25)] public int? ExceptionNumber { get; set; } /// /// 物料数量 /// [ExcelColumn(Name = "物料数量", Width = 25)] public int? MaterialNumber { get; set; } /// /// 冗余字段1 - 预留扩展用途 /// [ExcelColumn(Name = "冗余字段1", Width = 25)] public string RedundantField1 { get; set; } /// /// 冗余字段2 - 预留扩展用途 /// [ExcelColumn(Name = "冗余字段2", Width = 25)] public string RedundantField2 { get; set; } /// /// 冗余字段3 - 预留扩展用途 /// [ExcelColumn(Name = "冗余字段3", Width = 25)] public string RedundantField3 { get; set; } /// /// 备注 /// [ExcelColumn(Name = "备注", Width = 25)] public virtual string Remark { get; set; } } } }