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.
27 lines
614 B
27 lines
614 B
using SqlSugar;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Wood.Entity.SystemManage
|
|
{
|
|
/// <summary>
|
|
/// 角色数据范围
|
|
/// </summary>
|
|
[SugarTable("SysRoleDataScope", "角色数据范围")]
|
|
public class RoleDataScopeEntity:EntityCreateBase
|
|
{
|
|
/// <summary>
|
|
/// 角色Id
|
|
/// </summary>
|
|
[SugarColumn(ColumnDescription = "角色Id")]
|
|
public long RoleId { get; set; } = 0;
|
|
/// <summary>
|
|
/// 部门Id
|
|
/// </summary>
|
|
[SugarColumn(ColumnDescription = "部门Id")]
|
|
public long OrgId { get; set; } = 0;
|
|
}
|
|
}
|
|
|