using Admin.NET.Core.Helper.ExcelHelper; using iWare.Wms.Core.Enum; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace iWare.Wms.Application { public class WmsPartExcel { /// /// 零件编号 /// [ExcelDataOptionAttribute(DisplayName = "零件编号", ColumnIndex = 0)] public string PartCode { get; set; } /// /// 零件名称 /// [ExcelDataOptionAttribute(DisplayName = "零件名称", ColumnIndex = 1)] public string PartName { get; set; } /// /// 端拾器编码 /// [ExcelDataOptionAttribute(DisplayName = "小车编号", ColumnIndex = 2)] public string MaterialCode { get; set; } /// /// 车型 /// [ExcelDataOptionAttribute(DisplayName = "车型", ColumnIndex = 3)] public string CarType { get; set; } /// /// 长度 /// [ExcelDataOptionAttribute(DisplayName = "长度", ColumnIndex = 4)] public decimal Length { get; set; } /// /// 宽度 /// [ExcelDataOptionAttribute(DisplayName = "宽度", ColumnIndex = 5)] public decimal Width { get; set; } /// /// 高度 /// [ExcelDataOptionAttribute(DisplayName = "高度", ColumnIndex = 6)] public decimal Height { get; set; } /// /// 生产线 /// [ExcelDataOptionAttribute(DisplayName = "生产线", ColumnIndex = 7)] public string LineType { get; set; } /// /// 备注 /// [ExcelDataOptionAttribute(DisplayName = "备注", ColumnIndex = 8)] public string Remark { get; set; } } }