Files
HTCloud/HT.Cloud.Domain/Entity/IBaseEntity/IModificationAudited.cs

18 lines
502 B
C#
Raw Normal View History

2023-03-03 16:07:50 +08:00
/*******************************************************************************
* Copyright © 2020 HT.Cloud.Framework
* Author: HT.Cloud
* Description: WaterCloud快速开发平台
* Website
*********************************************************************************/
using System;
namespace HT.Cloud.Domain
{
public interface IModificationAudited
{
string F_Id { get; set; }
string F_LastModifyUserId { get; set; }
DateTime? F_LastModifyTime { get; set; }
}
}