using System; using System.Collections.Generic; using System.Text; namespace Zeus.Utility.Entity { /// /// 数据模型接口 /// public interface IEntity { /// /// 实体唯一标识,主键 /// TKey ID { get; } /// /// 创建时间 /// DateTime CreatedAt { get; set; } } }