BaoKai_202508_Wms_Jingwang_.../WMS.Attirubte/TableKeyAttribute.cs

24 lines
495 B
C#
Raw Normal View History

2025-08-24 21:52:42 +08:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace WMS.Attirubte
{
/// <summary>
/// 表的映射时,设计主键
/// </summary>
[System.AttributeUsage(System.AttributeTargets.Class |
System.AttributeTargets.Struct)]
public class TableKeyAttribute : Attribute
{
/// <summary>
/// 表的主键
/// </summary>
public string keyTable = string.Empty;
}
}