CommConsts.java 255 B

123456789101112131415
  1. package com.xy.consts;
  2. public class CommConsts {
  3. /**
  4. * 管理员角色code编码
  5. */
  6. public static final String ADMIN_ROLE_CODE = "xy_admin";
  7. /**
  8. * 管理员用户ID
  9. */
  10. public static final Long ADMIN_USER_ID = 1L;
  11. }