using SqlSugar; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Wood.Entity.SystemManage { /// /// 角色数据范围 /// [SugarTable("SysRoleDataScope", "角色数据范围")] public class RoleDataScopeEntity:EntityCreateBase { /// /// 角色Id /// [SugarColumn(ColumnDescription = "角色Id")] public long RoleId { get; set; } = 0; /// /// 部门Id /// [SugarColumn(ColumnDescription = "部门Id")] public long OrgId { get; set; } = 0; } }