Ai
1 Star 0 Fork 0

liming/Scheduler

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
RoleModulePermission.cs 1.17 KB
一键复制 编辑 原始数据 按行查看 历史
liming 提交于 2025-04-20 22:07 +08:00 . 完成部分jwt
using Microsoft.EntityFrameworkCore;
using System.ComponentModel.DataAnnotations;
using System.ComponentModel.DataAnnotations.Schema;
namespace Scheduler.Model
{
/// <summary>
/// 按钮跟权限关联表
/// </summary>
//[Table("Role_Module_Permission")]
[Comment("按钮跟权限关联表")]
public class RoleModulePermission:BaseEntity
{
public RoleModulePermission()
{
Role=new Role();
Module=new Modules();
Permission=new Permission();
}
/// <summary>
/// 角色Id
/// </summary>
[Required]
public long RoleId { get; set; }
/// <summary>
/// 菜单Id
/// </summary>
[Required]
public long ModuleId { get; set; }
/// <summary>
/// api Id
/// </summary>
[Required]
public long PermissionId { get; set; }
// 下边三个实体参数,只是做传参作用,所以忽略下
[NotMapped]
public Role Role { get; set; }
[NotMapped]
public Modules Module { get; set; }
[NotMapped]
public Permission Permission { get; set; }
}
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
C#
1
https://gitee.com/cplmlm/scheduler.git
git@gitee.com:cplmlm/scheduler.git
cplmlm
scheduler
Scheduler
master

搜索帮助