30 lines
569 B
C#
30 lines
569 B
C#
|
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; }
|
|||
|
|
|||
|
|
|||
|
|
|||
|
}
|
|||
|
|
|||
|
}
|