using System; using System.Collections.Generic; using System.Linq; using System.Linq.Expressions; using System.Reflection; using System.Text; using System.Threading.Tasks; namespace XYY.Core.Standard.ExcelHelper.MSExcelHelper { public class ExcelMappingAttrItem { /// /// 列名 /// public string ColumnName { get; set; } public string AtrrFormat { get; set; } public ExcelMappingAttrItem Name(string name) { this.ColumnName = name; return this; } public ExcelMappingAttrItem Format(string format) { this.AtrrFormat = format; return this; } /// /// 列名表达式 /// public LambdaExpression LambdaExpression { get; set; } } }