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
483 B
20 lines
483 B
using System;
|
|
|
|
namespace Znyc.Recruitment.Admin.Commons.Entitys
|
|
{
|
|
/// <summary>
|
|
/// 定义更新审计的信息
|
|
/// </summary>
|
|
public interface IModificationAudited
|
|
{
|
|
/// <summary>
|
|
/// 获取或设置 最后修改用户
|
|
/// </summary>
|
|
string ModifiedUserId { get; set; }
|
|
|
|
/// <summary>
|
|
/// 获取或设置 最后修改时间
|
|
/// </summary>
|
|
DateTime? ModifiedTime { get; set; }
|
|
}
|
|
}
|