using SqlSugar;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace cylsg.Model.ECTEModel
{
///
/// 系统权限菜单表
///
[TenantAttribute("ECTESTOADB")]
public class Sys_Permissions_Menu
{
///
/// 信息编号
///
[SugarColumn(IsPrimaryKey = true, IsIdentity = true)]
public int Keyid { get; set; }
///
/// 菜单名称
///
[SugarColumn(IsNullable = false, ColumnDataType = "nvarchar(50)")]
public string MenuName { get; set; }
///
/// 父菜单ID
///
[SugarColumn(IsNullable = true)]
public int? ParentId { get; set; }
///
/// 菜单路径
///
[SugarColumn(IsNullable = true, ColumnDataType = "varchar(200)")]
public string MenuPath { get; set; }
///
/// 菜单图标
///
[SugarColumn(IsNullable = true, ColumnDataType = "varchar(200)")]
public string MenuIcon { get; set; }
///
/// 是否有效
///
[SugarColumn(IsNullable = false)]
public bool IsUsed { get; set; }
///
/// 排序码
///
[SugarColumn(IsNullable = true, ColumnDataType = "varchar(5)")]
public string OrderCode { get; set; }
///
/// 最后修改时间
///
[SugarColumn(IsNullable = false)]
public DateTime LastUpdateTime { get; set; }
///
/// 操作人
///
[SugarColumn(IsNullable = false, ColumnDataType = "varchar(20)")]
public string Operator { get; set; }
///
/// 备注
///
[SugarColumn(IsNullable = true, ColumnDataType = "varchar(200)")]
public string Remark { get; set; }
}
}