Ai
1 Star 0 Fork 0

liming/Scheduler

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
UserRole.cs 847 Bytes
一键复制 编辑 原始数据 按行查看 历史
liming 提交于 2025-05-02 11:43 +08:00 . 用户相关的操作
using Microsoft.EntityFrameworkCore;
using System.ComponentModel.DataAnnotations;
using System.ComponentModel.DataAnnotations.Schema;
namespace Scheduler.Model
{
/// <summary>
/// 用户跟角色关联表
/// </summary>
//[Table("UserRole")]
[Comment("用户跟角色关联表")]
public class UserRole : BaseEntity
{
//public UserRole() { }
public UserRole(long uid, long rid)
{
UserId = uid;
RoleId = rid;
CreateId = uid;
}
/// <summary>
/// 用户Id
/// </summary>
[Comment("用户Id")]
[Required]
public long UserId { get; set; }
/// <summary>
/// 角色Id
/// </summary>
[Comment("角色Id")]
[Required]
public long RoleId { get; set; }
}
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
C#
1
https://gitee.com/cplmlm/scheduler.git
git@gitee.com:cplmlm/scheduler.git
cplmlm
scheduler
Scheduler
master

搜索帮助