You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
using System;
|
|
|
|
namespace EntrustSettle.Model.Models
|
|
{
|
|
/// <summary>
|
|
/// 用户跟角色关联表
|
|
/// </summary>
|
|
public class UserRole : BaseEntity
|
|
{
|
|
/// <summary>
|
|
/// 用户ID
|
|
/// </summary>
|
|
public long UserId { get; set; }
|
|
/// <summary>
|
|
/// 角色ID
|
|
/// </summary>
|
|
public long RoleId { get; set; }
|
|
}
|
|
}
|