package com.ydtech.constants; import com.ydtech.utils.MacUtils; /** * 常量管理 * * @author Yasepix * @date Oct 29, 2018 */ public class SysConstants { /** * 系统管理员用户名 */ public static String ADMIN = "admin"; /** * 超级管理员所在部门 */ public static final String DEPT = "4"; public static final String MAC_ADDRESS = MacUtils.getLocalMac(); /** * 薪酬管理审核状态(0:待审核;1:审核通过;2:审核未通过 9:未提交审核) */ public static final String TO_BE_REVIEW = "0"; public static final String SUCCESS_REVIEW = "1"; public static final String FAIL_REVIEW = "2"; public static final String NO_SUBMIT_REVIEW = "9"; /** * 薪酬管理人员属性 后线人员 --》也是全日制 */ public static final String A = "A"; /** * 薪酬管理人员属性 B和岗位为18:代理 否则: 业务人员) --》也是非全日制 */ public static final String B = "B"; /** * 薪酬管理人员属性 非全日制人员--》也是劳务派遣 */ public static final String C = "C"; /** * 车险保单目录 add lig 2023-09-21 */ public static String CAR_INS_POLICY = "carInsPolicy"; }