using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace CloudBuilder.Core.DatabaseAccessor.Entity { /// /// 数据模型接口 /// public interface IEntity : IGet { /// /// 获取或设置 实体唯一标识,主键 /// TKey Id { get; set; } } }