17 lines
390 B
C#
17 lines
390 B
C#
namespace Tnb.WarehouseMgr.Entities.Attributes
|
|
{
|
|
|
|
[AttributeUsage(AttributeTargets.Property)]
|
|
public class RelationalFieldAttribute : Attribute
|
|
{
|
|
/// <summary>
|
|
/// 关联表名称
|
|
/// </summary>
|
|
public string Table { get; set; }
|
|
/// <summary>
|
|
/// 字段
|
|
/// </summary>
|
|
public string Field { get; set; }
|
|
}
|
|
}
|