using System; using System.Collections.Generic; using System.ComponentModel; using System.Text; namespace YiSha.Enum.ZX { /// /// 菜单类型枚举 /// public enum MenuManagerModelsTypeEnum { /// /// 后台功能菜单 /// [Description("后台功能菜单")] 后台功能菜单 = 0, /// /// 前台导航 /// [Description("前台导航")] 前台导航 = 1 } /// /// 菜单-公告或文章类型 /// public enum MenuNoticeOrArticleTypeEnum { /// /// 文章类型 /// [Description("文章类型")] 文章类型 = 0, /// /// 公告类型 /// [Description("公告类型")] 公告类型 = 1 } /// /// 功能栏展示枚举 /// public enum MenuManagerModelsIsShowEnum { /// /// 不展示 /// [Description("不展示")] 不展示 = 0, /// /// 展示 /// [Description("展示")] 展示 = 1 } /// /// 所属网站类型枚举 /// public enum MenuManagerModelsIsWebEnum { /// /// Web55125 /// [Description("Web55125")] Web55125 = 0, /// /// Web55128 /// [Description("Web55128")] Web55128 = 1 } }