java110
2023-08-24 e46e9f6438737c72dd1f3aa022d8d3f6d112d311
1
2
3
4
5
6
7
8
9
10
11
12
13
14
package com.java110.utils.constant;
 
/**
 * 员工角色
 * Created by Administrator on 2019/3/30.
 */
public class StoreUserRelConstant {
 
    //管理员
    public final static String REL_ADMIN = "600311000001";
 
    //普通员工
    public final static String REL_COMMON = "600311000002";
}