using SqlSugar;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace CeramicProjectTool.Model
{
[SugarTable("nr_sys_mk")]
public sealed class ModuleModel
{
/*
[id]
,[belongmkid]
,[mc]
,[gnurl]
,[isview]
,[xh]*/
///
/// ID
///
[SugarColumn(ColumnName = "id", IsPrimaryKey = true)]
public int Id { get; set; }
///
///
///
[SugarColumn(ColumnName = "belongmkid")]
public int BelongMKId { get; set; }
///
/// 模块名称
///
[SugarColumn(ColumnName = "mc")]
public string ModuleName { get; set; }
///
/// 模块路径
///
[SugarColumn(ColumnName = "gnurl")]
public string GNURL { get; set; }
///
/// 是否可见
///
[SugarColumn(ColumnName = "isview")]
public bool IsView { get; set; }
///
/// 序号
///
[SugarColumn(ColumnName = "xh")]
public int XH { get; set; }
}
}