消防站文档解析
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

18 lines
555 B

using System;
using System.Collections.Generic;
using System.Text;
namespace Infrastructure.Excel.Attributes
{
[AttributeUsage(AttributeTargets.Property,Inherited =false)]
public class ExcelColumnAttribute : Attribute
{
public string Name { get; set; }
public bool Required { get; set; }
public string Regex { get; set; }
public string EnumKey { get; set; }
public string[] Enums { get; set; }
public string[] ParentHeaderNameList { get; set; }
public int Sort { get; set; }
}
}