Files
tnb.server/common/Tnb.Common/Contracts/BaseEntity`1.cs
2023-11-06 19:35:59 +08:00

16 lines
321 B
C#

using SqlSugar;
namespace JNPF.Common.Contracts;
public class BaseEntity<TKey> : IEntity where TKey : IEquatable<TKey>
{
/// <summary>
/// 获取或设置 编号.
/// </summary>
[SugarColumn(ColumnName = "id", ColumnDescription = "主键", IsPrimaryKey = true)]
public TKey id { get; set; }
}