package com.ruoyi.common.utils;
|
|
import java.util.Map;
|
|
public class DeptUtil {
|
|
/**
|
* 总公司部门ID
|
*/
|
public static Long ROOT_DEPT_ID=100L;
|
/**
|
* 广州总部部门ID
|
*/
|
public static Long GUANGZHOU_DEPT_ID=101L;
|
|
private static final Map<Long,Long> deptIdBranchIdMap=new java.util.HashMap<>();
|
public static void setDeptIdBranchId(Long deptId,Long branchId){
|
deptIdBranchIdMap.put(deptId, branchId);
|
}
|
|
public static Long getBranchId(Long deptId) {
|
return deptIdBranchIdMap.get(deptId);
|
}
|
|
}
|