using System;
//Nhibernate Code Generation Template 1.0
//author:MythXin
//blog:www.cnblogs.com/MythXin
//Entity Code Generation Template
namespace NXWMS.DataAccess.Entity
{
//菜单信息表
public class SYS_MENU
{
///
/// 系统主键
///
public int MENU_ID{get;set;}
///
/// NewId主键
///
public string NEWID{get;set;}
///
/// 菜单编码
///
public string MENU_CODE{get;set;}
///
/// 菜单名称
///
public string MENU_NAME{get;set;}
///
/// 菜单窗体或者链接
///
public string MENU_URL{get;set;}
///
/// 菜单图标
///
public string MENU_ICON{get;set;}
///
/// 菜单层级关系。-1:父级菜单;大于1:子级菜单。
///
public int? MENU_PID{get;set;}
///
/// 菜单显示顺序。数字越小,显示顺序越高。
///
public int? MENU_ORDER{get;set;}
///
/// 描述
///
public string DESCRIBE{get;set;}
///
/// 使用标识。0:禁用;1:启用。
///
public int USED_FLAG{get;set;}
///
/// 删除标识。0:未删除;1:已删除。
///
public int DEL_FLAG{get;set;}
///
/// 创建人
///
public int CREATE_BY{get;set;}
///
/// 创建时间
///
public DateTime CREATE_TIME{get;set;}
///
/// 最后更新人
///
public int UPDATE_BY{get;set;}
///
/// 最后更新时间
///
public DateTime UPDATE_TIME{get;set;}
///
/// 数据版本号
///
public int DATA_VERSION{get;set;}
///
/// 备用字段1
///
public string REMARKS1{get;set;}
///
/// 备用字段2
///
public string REMARKS2{get;set;}
///
/// 备用字段3
///
public string REMARKS3{get;set;}
///
/// 备用字段4
///
public string REMARKS4{get;set;}
///
/// 备用字段5
///
public string REMARKS5{get;set;}
}
}