/******************************************************************************* * 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; } } }