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