using SqlSugar; using System.ComponentModel; namespace GDZZ.Core.Entity; /// /// 用户角色表 /// [SugarTable("sys_user_role")] [Description("用户角色表")] public class SysUserRole { /// /// 用户Id /// [SugarColumn(ColumnDescription = "用户Id")] public long SysUserId { get; set; } /// /// 系统角色Id /// [SugarColumn(ColumnDescription = "系统角色Id")] public long SysRoleId { get; set; } }