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