namespace CloudGaming.Core.EntityFramework.Aop; [AttributeUsage(AttributeTargets.Property)] public class DictAttribute : Attribute { public DictAttribute(string dictTableName, string dictCode, string dictName) { DictTableName = dictTableName; DictCode = dictCode; DictName = dictName; } /// /// 字典表名称 /// public string DictTableName { get; set; } /// /// 字典表主键 /// public string DictCode { get; set; } /// /// 字典表显示字段 /// public string DictName { get; set; } /// /// excel标题 /// public string ExcelTitle { get; set; } }