using SqlSugar;
using System.ComponentModel;
namespace Myshipping.Core.Entity;
///
/// 用户数据范围表
///
[SugarTable("sys_user_data_scope")]
[Description("用户数据范围表")]
public class SysUserDataScope
{
///
/// 用户Id
///
public long SysUserId { get; set; }
///
/// 机构Id
///
public long SysOrgId { get; set; }
///
/// 菜单Id
///
public long SysMenuId { get; set; }
public bool IsEdit { get; set; }
}