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.
20 lines
625 B
20 lines
625 B
using System;
|
|
|
|
namespace Znyc.Recruitment.Admin.Commons.Entitys
|
|
{
|
|
/// <summary>
|
|
/// 定义创建审计信息:给实体添加创建时的 创建人CreatedUserId,创建时间CreatedTime 的审计信息,这些值将在数据层执行 创建Insert 时自动赋值。
|
|
/// </summary>
|
|
public interface ICreationAudited
|
|
{
|
|
/// <summary>
|
|
/// 获取或设置 创建日期
|
|
/// </summary>
|
|
DateTime CreatedTime { get; set; }
|
|
|
|
/// <summary>
|
|
/// 获取或设置 创建用户主键
|
|
/// </summary>
|
|
long CreatedUserId { get; set; }
|
|
}
|
|
}
|