schangxiang@126.com
2025-05-08 9cc9187d1d56332ab06620ae5bce8a9d0d2045bd
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
using MiniExcelLibs.Attributes;
 
namespace CMS.Plugin.WareCmsUtilityApi.Application.Contracts.Dtos.Samples
{
    /// <summary>
    /// Samples导出模型
    /// </summary>
    public class SamplesExportModel
    {
        /// <summary>
        /// Sample导出模型
        /// </summary>
        public class WorkSectionExportModel
        {
            [ExcelColumn(Name = "名称", Width = 25)]
            public virtual string Name { get; set; }
 
            [ExcelColumn(Name = "编号", Width = 25)]
            public virtual string Code { get; set; }
 
            [ExcelColumn(Name = "备注", Width = 25)]
            public virtual string Remark { get; set; }
        }
    }
}