1234567891011121314151617181920212223242526272829303132 |
- package com.wtkj.config;
- /**
- * @author Blizzard
- * @create at 2023-09-14 09:17
- * @describe
- */
- public interface MagicValue {
- /**
- * 业主机构管理员
- */
- String DEPT_ADMIN = "deptAdmin";
- /**
- * 服务机构管理员
- */
- String STAFF_ADMIN = "staff_admin";
- /**
- * 服务机构次级管理员
- */
- String STAFF_SECOND_ADMIN = "staff_second_admin";
- String STAFF_USER = "staff_user";
- Integer ZERO = 0;
- Integer ONE = 1;
- Integer TWO = 2;
- }
|