/*******************************************************************************
* Copyright © 2020 HT.Cloud.Framework 版权所有
* Author: HT.Cloud
* Description: WaterCloud快速开发平台
* Website:
*********************************************************************************/
using System;
namespace HT.Cloud.Domain
{
public interface IDeleteAudited
{
///
/// 逻辑删除标记
///
bool? F_DeleteMark { get; set; }
///
/// 删除实体的用户
///
string F_DeleteUserId { get; set; }
///
/// 删除实体时间
///
DateTime? F_DeleteTime { get; set; }
}
}