using System; using System.Collections.Generic; namespace MySystem.JavaModels { public partial class SysMenu { public long MenuId { get; set; } public string Name { get; set; } public string EnName { get; set; } public string Permission { get; set; } public string Path { get; set; } public long? ParentId { get; set; } public string Icon { get; set; } public string Visible { get; set; } public int? SortOrder { get; set; } public string KeepAlive { get; set; } public string Embedded { get; set; } public string MenuType { get; set; } public string CreateBy { get; set; } public DateTime? CreateTime { get; set; } public string UpdateBy { get; set; } public DateTime? UpdateTime { get; set; } public string DelFlag { get; set; } } }