123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475 |
- namespace EMISOnline.Entities
- {
- #pragma warning disable 1573
- using System;
- using System.Collections.Generic;
-
-
-
-
- public partial class Sys_Menu
- {
-
-
-
- public string MenuNo { get; set; }
-
-
-
- public short OrderNo { get; set; }
-
-
-
- public string MenuName { get; set; }
-
-
-
- public string Icon { get; set; }
-
-
-
- public string Url { get; set; }
-
-
-
- public string ParentMenuNo { get; set; }
-
-
-
- public string Description { get; set; }
-
-
-
- public bool IsTopMenu { get; set; }
-
-
-
- public bool IsVisible { get; set; }
-
-
-
- public Nullable<bool> IsLeaf { get; set; }
-
-
-
- public string FunctionCode { get; set; }
-
-
-
- public int RecordStatus { get; set; }
-
-
-
-
- public virtual Sys_FunctionCode Sys_FunctionCode { get; set; }
- }
- }
|