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.
35 lines
697 B
C#
35 lines
697 B
C#
1 year ago
|
using System;
|
||
|
using SqlSugar;
|
||
|
using System.ComponentModel.DataAnnotations;
|
||
|
using System.ComponentModel.DataAnnotations.Schema;
|
||
|
namespace Admin.Core.Model
|
||
|
{
|
||
|
///<summary>
|
||
|
///用户和角色关联表实体类
|
||
|
///</summary>
|
||
|
[Table("SysUserRole")]
|
||
|
[SugarTable( "SysUserRole", "admin_sqlite")]
|
||
|
public class SysUserRole
|
||
|
{
|
||
|
|
||
|
/// <summary>
|
||
|
/// ID
|
||
|
/// </summary>
|
||
|
[Key]
|
||
|
[SugarColumn(IsPrimaryKey=true,IsIdentity=true)]
|
||
|
[Required]
|
||
|
public int ID { get; set; }
|
||
|
|
||
|
/// <summary>
|
||
|
/// 用户ID
|
||
|
/// </summary>
|
||
|
public int? UserID { get; set; }
|
||
|
|
||
|
/// <summary>
|
||
|
/// 角色ID
|
||
|
/// </summary>
|
||
|
public int? RoleID { get; set; }
|
||
|
|
||
|
}
|
||
|
}
|