You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
371 B
14 lines
371 B
namespace Znyc.Recruitment.Admin.Commons.Entitys
|
|
{
|
|
/// <summary>
|
|
/// 数据模型接口
|
|
/// </summary>
|
|
/// <typeparam name="TKey">实体主键类型</typeparam>
|
|
public interface IBaseEntity<out TKey> : IEntity
|
|
{
|
|
/// <summary>
|
|
/// 获取 实体唯一标识,主键
|
|
/// </summary>
|
|
TKey Id { get; }
|
|
}
|
|
}
|