using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace DG.Tool.Attributes { /// /// 导出列的别名 /// [AttributeUsage(AttributeTargets.Property)] public class ExportColumnNameAttribute : Attribute { public string? Name { get; set; } public ExportColumnNameAttribute(string? name) { Name = name; } } }