1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
| package com.java110.common.constant;
|
| /**
| * 服务数据状态常量
| * Created by wuxw on 2017/5/20.
| */
| public class ServiceCodeConstant {
|
| /**
| * 查询菜单编码
| */
| public static final String SERVICE_CODE_QUERY_MENU_ITEM = "query.console.menu";
|
| /**
| * 查询菜单编码名称
| */
| public static final String SERVICE_CODE_QUERY_MENU_ITEM_NAME = "查询菜单";
|
|
|
|
| }
|
|