12345678910111213141516171819202122232425 |
- // <author></author>
- // <date></date>
- // <description></description>
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace ERP.Core.Constant
- {
- public class CoreConstant
- {
- /// <summary>
- /// 菜单组件Layout
- /// </summary>
- public const string LAYOUT = "Layout";
- /// <summary>
- /// 菜单组件ParentView
- /// </summary>
- public const string PARENT_VIEW = "ParentView";
- }
- }
|