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.
BookingHeChuan/Myshipping.Core/Entity/SysRoleDataScope.cs

26 lines
434 B
C#

2 years ago
using SqlSugar;
using System.ComponentModel;
namespace Magic.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; }
}