12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576 |
- 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
- {
-
-
-
- [Description("Web55125")]
- Web55125 = 0,
-
-
-
- [Description("Web55128")]
- Web55128 = 1
- }
- }
|