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.
30 lines
569 B
C#
30 lines
569 B
C#
using SqlSugar;
|
|
using System.ComponentModel;
|
|
|
|
namespace Myshipping.Core.Entity;
|
|
|
|
/// <summary>
|
|
/// 用户数据范围表
|
|
/// </summary>
|
|
[SugarTable("sys_user_data_scope")]
|
|
[Description("用户数据范围表")]
|
|
public class SysUserDataScope
|
|
{
|
|
/// <summary>
|
|
/// 用户Id
|
|
/// </summary>
|
|
public long SysUserId { get; set; }
|
|
|
|
/// <summary>
|
|
/// 机构Id
|
|
/// </summary>
|
|
public long SysOrgId { get; set; }
|
|
|
|
/// <summary>
|
|
/// 菜单Id
|
|
/// </summary>
|
|
public long SysMenuId { get; set; }
|
|
|
|
public bool IsEdit { get; set; }
|
|
}
|