using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace FlexJobApi.Core { /// /// 菜单类型 /// public enum EnumMenuType { /// /// 菜单 /// Menu = 10, /// /// 页面 /// Page = 20, /// /// 模态框 /// Modal = 30, /// /// 按钮 /// Button = 40, /// /// 字段 /// Field = 50 } }