You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
|
using SqlSugar;
|
|
|
|
|
using System.ComponentModel;
|
|
|
|
|
|
|
|
|
|
namespace GDZZ.Core.Entity;
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 角色数据范围表
|
|
|
|
|
/// </summary>
|
|
|
|
|
[SugarTable("sys_role_data_scope")]
|
|
|
|
|
[Description("角色数据范围表")]
|
|
|
|
|
public class SysRoleDataScope
|
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 角色Id
|
|
|
|
|
/// </summary>
|
|
|
|
|
[SugarColumn(ColumnDescription = "角色Id")]
|
|
|
|
|
public long SysRoleId { get; set; }
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 机构Id
|
|
|
|
|
/// </summary>
|
|
|
|
|
[SugarColumn(ColumnDescription = "机构Id")]
|
|
|
|
|
public long SysOrgId { get; set; }
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
}
|