You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
451 B
21 lines
451 B
using System;
|
|
|
|
namespace Tiobon.Core.Model
|
|
{
|
|
/// <summary>
|
|
/// 用户跟角色关联表
|
|
/// 父类
|
|
/// </summary>
|
|
public class UserRoleRoot<Tkey> : RootEntityTkey<Tkey> where Tkey : IEquatable<Tkey>
|
|
{
|
|
/// <summary>
|
|
/// 用户ID
|
|
/// </summary>
|
|
public Tkey UserId { get; set; }
|
|
/// <summary>
|
|
/// 角色ID
|
|
/// </summary>
|
|
public Tkey RoleId { get; set; }
|
|
|
|
}
|
|
}
|
|
|