25 lines
503 B
C#
25 lines
503 B
C#
|
|
using SqlSugar;
|
||
|
|
|
||
|
|
namespace QYZH.InteractiveMagazine.Models.Entity;
|
||
|
|
|
||
|
|
/// <summary>
|
||
|
|
/// 后台管理员角色关系表
|
||
|
|
/// </summary>
|
||
|
|
[SugarTable("AdminUserRole")]
|
||
|
|
public partial class AdminUserRole : SqlSugarBaseEntity
|
||
|
|
{
|
||
|
|
/// <summary>
|
||
|
|
/// Desc:管理员ID
|
||
|
|
/// Default:
|
||
|
|
/// Nullable:False
|
||
|
|
/// </summary>
|
||
|
|
public long AdminUserId { get; set; }
|
||
|
|
|
||
|
|
/// <summary>
|
||
|
|
/// Desc:角色ID
|
||
|
|
/// Default:
|
||
|
|
/// Nullable:False
|
||
|
|
/// </summary>
|
||
|
|
public long RoleId { get; set; }
|
||
|
|
}
|