feixian_weifajianguan/Infrastructure/Utilities/Excel/ExcelColumnAttribute.cs

15 lines
290 B
C#

namespace Infrastructure.Utilities.Excel;
using System;
[AttributeUsage(AttributeTargets.Property)]
public class ExcelColumnAttribute : Attribute
{
public string HeaderName { get; }
public ExcelColumnAttribute(string headerName)
{
HeaderName = headerName;
}
}