ke_junjie
2025-06-04 84620534eb627e95811b971a4b552b6a177829bf
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
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
    {
        /// <summary>
        /// 零件编号
        /// </summary>
        [ExcelDataOptionAttribute(DisplayName = "零件编号", ColumnIndex = 0)]
        public string PartCode { get; set; }
 
        /// <summary>
        /// 零件名称
        /// </summary>
        [ExcelDataOptionAttribute(DisplayName = "零件名称", ColumnIndex = 1)]
        public string PartName { get; set; }
 
        /// <summary>
        /// 端拾器编码
        /// </summary>
        [ExcelDataOptionAttribute(DisplayName = "小车编号", ColumnIndex = 2)]
        public string MaterialCode { get; set; }
 
 
        /// <summary>
        /// 车型
        /// </summary>
        [ExcelDataOptionAttribute(DisplayName = "车型", ColumnIndex = 3)]
        public string CarType { get; set; }
 
        /// <summary>
        /// 长度
        /// </summary>
        [ExcelDataOptionAttribute(DisplayName = "长度", ColumnIndex = 4)]
        public decimal Length { get; set; }
 
        /// <summary>
        /// 宽度
        /// </summary>
        [ExcelDataOptionAttribute(DisplayName = "宽度", ColumnIndex = 5)]
        public decimal Width { get; set; }
 
        /// <summary>
        /// 高度
        /// </summary>
        [ExcelDataOptionAttribute(DisplayName = "高度", ColumnIndex = 6)]
        public decimal Height { get; set; }
 
        /// <summary>
        /// 生产线
        /// </summary>
        [ExcelDataOptionAttribute(DisplayName = "生产线", ColumnIndex = 7)]
        public string LineType { get; set; }
 
        /// <summary>
        /// 备注
        /// </summary>
        [ExcelDataOptionAttribute(DisplayName = "备注", ColumnIndex = 8)]
        public string Remark { get; set; }
 
    }
}