| | |
| | | package com.vci.frameworkcore.compatibility; |
| | | |
| | | import com.vci.corba.common.PLException; |
| | | import com.vci.frameworkcore.pagemodel.OrgDepartmentVO; |
| | | import com.vci.starter.web.exception.VciBaseException; |
| | | import com.vci.starter.web.pagemodel.DataGrid; |
| | |
| | | * @param queryMap 查询条件,如果需要使用用户的属性来查询可以使用pkUser.xxxx |
| | | * @return 部门的显示对象 |
| | | */ |
| | | OrgDepartmentVO listDeptByUserOid(String userOid, Map<String, String> queryMap); |
| | | List<OrgDepartmentVO> listDeptByUserOid(String userOid, Map<String, String> queryMap); |
| | | |
| | | /** |
| | | * 获取未关联某个用户的部门 |
| | |
| | | */ |
| | | DataGrid refTreeGridDept(TreeQueryObject treeQueryObject); |
| | | |
| | | /** |
| | | * 保存部门角色关联信息,带查重功能 |
| | | * @param userId 用户id |
| | | * @param deptIds 部门oid |
| | | * @return |
| | | */ |
| | | boolean saveUserDepts(String userId, List<String> deptIds) throws PLException; |
| | | |
| | | } |