MeiRiYiCheng_1_old/Nirvana.Data/Interface/IModificationAudited.cs

14 lines
274 B
C#
Raw Permalink Normal View History

2025-07-16 17:14:38 +08:00
using System;
using System.Collections.Generic;
using System.Text;
namespace Nirvana.Data
{
public interface IModificationAudited
{
long Id { get; set; }
long? LastModifyUserId { get; set; }
DateTime? LastModifyTime { get; set; }
}
}