You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
29 lines
537 B
29 lines
537 B
using SqlSugar;
|
|
using System.ComponentModel;
|
|
|
|
namespace Magic.Core.Entity;
|
|
|
|
/// <summary>
|
|
/// 用户数据范围表
|
|
/// </summary>
|
|
[SugarTable("sys_user_data_scope")]
|
|
[Description("用户数据范围表")]
|
|
public class SysUserDataScope
|
|
{
|
|
/// <summary>
|
|
/// 用户Id
|
|
/// </summary>
|
|
[SugarColumn(ColumnDescription = "用户Id")]
|
|
public long SysUserId { get; set; }
|
|
|
|
|
|
|
|
/// <summary>
|
|
/// 机构Id
|
|
/// </summary>
|
|
[SugarColumn(ColumnDescription = "机构Id")]
|
|
public long SysOrgId { get; set; }
|
|
|
|
|
|
}
|