吴学文
2019-05-22 18c4534ab226f0c44a27da033563b0fe220fa923
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
package com.java110.common.constant;
 
 
/**
 * 权限编码常量类
 */
public final class PrivilegeCodeConstant {
 
    private PrivilegeCodeConstant() {
 
    }
 
    //入驻小区
    public static final String PRIVILEGE_ENTER_COMMUNITY = "500201904008";
 
 
    //初始化楼
    public static final String PRIVILEGE_FLOOR = "500201904011";
 
 
    //初始化小区楼单元
    public static final String PRIVILEGE_UNIT = "500201904012";
 
 
    //初始化房屋楼单元
    public static final String PRIVILEGE_ROOM = "500201904006";
 
 
 
    //出售房屋权限
    public static final String PRIVILEGE_SELL_ROOM = "500201904014";
}