//------------------------------------------------------------------------------
//
// This code was generated from a template.
//
// Manual changes to this file may cause unexpected behavior in your application.
// Manual changes to this file will be overwritten if the code is regenerated.
//
//------------------------------------------------------------------------------
namespace EMISOnline.Entities
{
#pragma warning disable 1573
using System;
using System.Collections.Generic;
///
/// Sys_Menu
///
public partial class Sys_Menu
{
///
/// MenuNo
///
public string MenuNo { get; set; }
///
/// OrderNo
///
public short OrderNo { get; set; }
///
/// MenuName
///
public string MenuName { get; set; }
///
/// Icon
///
public string Icon { get; set; }
///
/// Url
///
public string Url { get; set; }
///
/// ParentMenuNo
///
public string ParentMenuNo { get; set; }
///
/// Description
///
public string Description { get; set; }
///
/// IsTopMenu
///
public bool IsTopMenu { get; set; }
///
/// IsVisible
///
public bool IsVisible { get; set; }
///
/// IsLeaf
///
public Nullable IsLeaf { get; set; }
///
/// FunctionCode
///
public string FunctionCode { get; set; }
///
/// RecordStatus
///
public int RecordStatus { get; set; }
///
/// Sys_FunctionCode
///
public virtual Sys_FunctionCode Sys_FunctionCode { get; set; }
}
}