1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465 |
- package com.kcim.constants;
- /**
- * @Author wangyongsheng
- * @Description
- * @Date 2022/7/19
- * @Param
- *
- **/
- public interface CommonConstant {
- /**
- * Sa-Token 存储用户信息在 session 中 前缀
- */
- String USER_PREFIX = "centerSys:";
- /**
- * 用户默认密码
- */
- String NORMAL_PASSWORD = "123456";
- /**
- * 权限缓存前缀
- */
- String PERMISSION_PREFIX = "centerCurrentPerms::";
- /**
- * 角色缓存前缀
- */
- String ROLE_PREFIX = "centerCurrentRole::";
- /**
- * 是
- */
- String YES = "是";
- /**
- * 否
- */
- String NO = "否";
- Integer AUDIT_YES = 1;
- Integer AUDIT_NO = 0;
- Integer SUBMIT = 1;
- Integer CANCEL_SUBMIT = 0;
- /**
- * 未结转
- */
- Integer CARRY_NO = 0;
- /**
- * 已结转
- */
- Integer CARRY_YES = 2;
- /**
- * 结转中
- */
- Integer CARRY_ON = 1;
-
-
- }
|