using SqlSugar;
using System.ComponentModel;
namespace GDZZ.Core.Entity;
///
/// 用户数据范围表
///
[SugarTable("sys_user_data_scope")]
[Description("用户数据范围表")]
public class SysUserDataScope
{
///
/// 用户Id
///
[SugarColumn(ColumnDescription = "用户Id")]
public long SysUserId { get; set; }
///
/// 机构Id
///
[SugarColumn(ColumnDescription = "机构Id")]
public long SysOrgId { get; set; }
}