using MiniExcelLibs.Attributes;
|
|
namespace CMS.Plugin.PipeLineLems.Application.Contracts.Dtos.MyTestEntityNames
|
{
|
/// <summary>
|
/// MyTestEntityNames导出模型
|
/// </summary>
|
public class MyTestEntityNamesExportModel
|
{
|
/// <summary>
|
/// MyTestEntityName导出模型
|
/// </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; }
|
}
|
}
|
}
|