using SqlSugar;
using System.ComponentModel;
namespace Magic.Core.Entity;
///
/// 角色数据范围表
///
[SugarTable("sys_role_data_scope")]
[Description("角色数据范围表")]
public class SysRoleDataScope
{
///
/// 角色Id
///
[SugarColumn(ColumnDescription = "角色Id")]
public long SysRoleId { get; set; }
///
/// 机构Id
///
[SugarColumn(ColumnDescription = "机构Id")]
public long SysOrgId { get; set; }
}