33 lines
731 B
C#
33 lines
731 B
C#
|
using SqlSugar;
|
|||
|
using System.ComponentModel.DataAnnotations;
|
|||
|
|
|||
|
namespace HL_FristAidPlatform_Models
|
|||
|
{
|
|||
|
/// <summary>
|
|||
|
/// 角色菜单表
|
|||
|
/// </summary>
|
|||
|
public class T_SYS_RoleMenu
|
|||
|
{
|
|||
|
/// <summary>
|
|||
|
/// GUID
|
|||
|
/// </summary>
|
|||
|
[Key]
|
|||
|
[SugarColumn(IsPrimaryKey = true)]
|
|||
|
public string GUID { get; set; }
|
|||
|
|
|||
|
/// <summary>
|
|||
|
/// 角色名称
|
|||
|
/// </summary>
|
|||
|
public long RoleID { get; set; }
|
|||
|
|
|||
|
/// <summary>
|
|||
|
/// 角色编号
|
|||
|
/// </summary>
|
|||
|
public long MenuID { get; set; }
|
|||
|
|
|||
|
/// <summary>
|
|||
|
/// 删除标记 0未删除 1已删除
|
|||
|
/// </summary>
|
|||
|
public int DeleteFlag { get; set; }
|
|||
|
}
|
|||
|
}
|