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