1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
| package com.java110.common.constant;
|
|
| /**
| * 权限编码常量类
| */
| public class PrivilegeCodeConstant {
|
| //入驻小区
| public static final String PRIVILEGE_ENTER_COMMUNITY = "500201904008";
|
|
| //初始化楼
| public static final String PRIVILEGE_FLOOR = "500201904011";
| }
|
|