提交rbac
提交设置右键错位的bug
This commit is contained in:
26
DH.RBAC/Models/Sys/SysUserRoleRelation.cs
Normal file
26
DH.RBAC/Models/Sys/SysUserRoleRelation.cs
Normal file
@ -0,0 +1,26 @@
|
||||
using SqlSugar;
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace DH.RBAC.Model.Sys
|
||||
{
|
||||
|
||||
[SugarTable("Sys_UserRoleRelation")]
|
||||
public partial class SysUserRoleRelation : BaseModelEntity
|
||||
{
|
||||
|
||||
[SugarColumn(ColumnName = "Id", IsPrimaryKey = true)]
|
||||
public string Id { get; set; }
|
||||
|
||||
[SugarColumn(ColumnName = "UserId")]
|
||||
public string UserId { get; set; }
|
||||
|
||||
|
||||
[SugarColumn(ColumnName = "RoleId")]
|
||||
public string RoleId { get; set; }
|
||||
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user