提交rbac
提交设置右键错位的bug
This commit is contained in:
29
DH.RBAC/Models/Sys/SysRoleAuthorize.cs
Normal file
29
DH.RBAC/Models/Sys/SysRoleAuthorize.cs
Normal file
@ -0,0 +1,29 @@
|
||||
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_RoleAuthorize")]
|
||||
public partial class SysRoleAuthorize : BaseModelEntity
|
||||
{
|
||||
[SugarColumn(ColumnName = "Id", IsPrimaryKey = true)]
|
||||
|
||||
public string Id { get; set; }
|
||||
|
||||
|
||||
[SugarColumn(ColumnName = "RoleId")]
|
||||
public string RoleId { get; set; }
|
||||
|
||||
|
||||
[SugarColumn(ColumnName = "ModuleId")]
|
||||
public string ModuleId { get; set; }
|
||||
|
||||
|
||||
|
||||
}
|
||||
|
||||
}
|
Reference in New Issue
Block a user