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.
22 lines
457 B
22 lines
457 B
using System;
|
|
|
|
namespace NFine.Domain
|
|
{
|
|
public interface IDeleteAudited
|
|
{
|
|
/// <summary>
|
|
/// 逻辑删除标记
|
|
/// </summary>
|
|
bool? F_DeleteMark { get; set; }
|
|
|
|
/// <summary>
|
|
/// 删除实体的用户
|
|
/// </summary>
|
|
string F_DeleteUserId { get; set; }
|
|
|
|
/// <summary>
|
|
/// 删除实体时间
|
|
/// </summary>
|
|
DateTime? F_DeleteTime { get; set; }
|
|
}
|
|
}
|