MeiRiYiCheng_1_old/Nirvana.Data/Interface/ICreationAudited.cs

17 lines
319 B
C#
Raw 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 ICreationAudited
{
/// <summary>
///
/// </summary>
long Id { get; set; }
long? CreateUserId { get; set; }
DateTime CreateTime { get; set; }
}
}