using SqlSugar;
|
using System;
|
using System.Collections.Generic;
|
using System.Text;
|
|
namespace Operater.DbModel
|
{
|
/// <summary>
|
///
|
/// </summary>
|
|
[SugarTable("role_set")]
|
public class RoleSet
|
{
|
/// <summary>
|
///
|
/// </summary>
|
public RoleSet()
|
{
|
}
|
|
/// <summary>
|
///
|
/// </summary>
|
[SugarColumn(ColumnName = "id", IsPrimaryKey = true)]
|
public System.String Id { get; set; }
|
|
/// <summary>
|
/// 角色名称
|
/// </summary>
|
[SugarColumn(ColumnName = "name")]
|
public System.String Name { get; set; }
|
|
/// <summary>
|
/// 创建时间
|
/// </summary>
|
[SugarColumn(ColumnName = "create_time")]
|
public System.DateTime? CreateTime { get; set; }
|
|
/// <summary>
|
/// 权限
|
/// </summary>
|
[SugarColumn(ColumnName = "roles")]
|
public System.String Roles { get; set; }
|
|
/// <summary>
|
/// 是否删除 0否 1是
|
/// </summary>
|
[SugarColumn(ColumnName = "is_de")]
|
public System.Int32? IsDe { get; set; }
|
|
/// <summary>
|
/// 备注
|
/// </summary>
|
[SugarColumn(ColumnName = "memo")]
|
public System.String Memo { get; set; }
|
}
|
}
|