namespace Znyc.Recruitment.Admin.Commons.Entitys { /// /// 数据模型接口 /// /// 实体主键类型 public interface IBaseEntity : IEntity { /// /// 获取 实体唯一标识,主键 /// TKey Id { get; } } }