namespace IStation.Entity { /// /// 基础实体 /// public class BaseEntity { /// /// /// public BaseEntity() { } /// /// /// public BaseEntity(BaseEntity rhs) { ID = rhs.ID; } /// /// 自增标识 /// [SugarColumn(IsIdentity = true, IsPrimaryKey = true)] public int ID { get; set; } } }