using NCC.Common.Extension;
using NCC.Dependency;
using SqlSugar;
using System;
namespace NCC.Common.Entity
{
///
/// 实体类基类
///
[SuppressSniffer]
public abstract class EntityBase : IEntity where TKey : IEquatable
{
///
/// 获取或设置 编号
///
[SugarColumn(ColumnName = "F_Id", ColumnDescription = "主键", IsPrimaryKey = true)]
public TKey Id { get; set; }
}
}