StoreUserRelConstant.java 297 B

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