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