32 lines
649 B
C#
32 lines
649 B
C#
|
|
using SqlSugar;
|
||
|
|
|
||
|
|
namespace QYZH.InteractiveMagazine.Models.Entity;
|
||
|
|
|
||
|
|
/// <summary>
|
||
|
|
/// 后台角色表
|
||
|
|
/// </summary>
|
||
|
|
[SugarTable("AdminRole")]
|
||
|
|
public partial class AdminRole : SqlSugarBaseEntity
|
||
|
|
{
|
||
|
|
/// <summary>
|
||
|
|
/// Desc:角色名称
|
||
|
|
/// Default:
|
||
|
|
/// Nullable:False
|
||
|
|
/// </summary>
|
||
|
|
public string Name { get; set; } = string.Empty;
|
||
|
|
|
||
|
|
/// <summary>
|
||
|
|
/// Desc:角色编码
|
||
|
|
/// Default:
|
||
|
|
/// Nullable:False
|
||
|
|
/// </summary>
|
||
|
|
public string Code { get; set; } = string.Empty;
|
||
|
|
|
||
|
|
/// <summary>
|
||
|
|
/// Desc:备注
|
||
|
|
/// Default:
|
||
|
|
/// Nullable:True
|
||
|
|
/// </summary>
|
||
|
|
public string? Remark { get; set; }
|
||
|
|
}
|