namespace Tnb.WarehouseMgr.Entities.Attributes { [AttributeUsage(AttributeTargets.Property)] public class RelationalFieldAttribute : Attribute { /// /// 关联表名称 /// public string Table { get; set; } /// /// 字段 /// public string Field { get; set; } } }