zs
2025-05-13 0cd95d98fdf7ed22d53398242feb2a3ca185cf09
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
using MiniExcelLibs.Attributes;
 
namespace CMS.Plugin.HIAWms.Application.Contracts.Dtos.WmsStores
{
    /// <summary>
    /// WmsStores导出模型
    /// </summary>
    public class WmsStoresExportModel
    {
        /// <summary>
        /// WmsStore导出模型
        /// </summary>
        public class WorkSectionExportModel
        {
            /// <summary>
            /// 获取或设置仓库代码
            /// </summary>
            /// <example>WH-001</example>
            [ExcelColumn(Name = "仓库代码", Width = 20)]
            public string StoreCode { get; set; }
 
            /// <summary>
            /// 获取或设置仓库名称
            /// </summary>
            /// <example>上海中心仓</example>
            [ExcelColumn(Name = "仓库名称", Width = 25)]
            public string StoreName { get; set; }
 
            /// <summary>
            /// 获取或设置预留扩展字段1
            /// </summary>
            [ExcelColumn(Name = "扩展字段1", Width = 20)]
            public string RedundantField1 { get; set; }
 
            /// <summary>
            /// 获取或设置预留扩展字段2
            /// </summary>
            [ExcelColumn(Name = "扩展字段2", Width = 20)]
            public string RedundantField2 { get; set; }
 
            /// <summary>
            /// 获取或设置预留扩展字段3
            /// </summary>
            [ExcelColumn(Name = "扩展字段3", Width = 20)]
            public string RedundantField3 { get; set; }
 
            /// <summary>
            /// 备注
            /// </summary>
            [ExcelColumn(Name = "备注", Width = 25)]
            public virtual string Remark { get; set; }
        }
    }
}