using System.ComponentModel; namespace DS.Module.Core.Data; /// /// 机构实体基类 /// public abstract class BaseOrgModel : BaseModel, IOrgId { /// /// 主键ID /// [Description("主键ID")] [SqlSugar.SugarColumn(IsPrimaryKey = true, Length = 100, ColumnDescription = "主键ID")] public TKey Id { get; set; } /// /// 机构Id /// [SqlSugar.SugarColumn(ColumnDescription = "机构Id")] public long OrgId { get; set; } = 0; }