| | |
| | | package com.vci.frameworkcore.compatibility; |
| | | |
| | | import com.vci.corba.common.PLException; |
| | | import com.vci.corba.common.data.UserEntityInfo; |
| | | import com.vci.frameworkcore.pagemodel.OrgDepartmentVO; |
| | | import com.vci.starter.web.exception.VciBaseException; |
| | | import com.vci.starter.web.pagemodel.DataGrid; |
| | |
| | | DataGrid refTreeGridDept(TreeQueryObject treeQueryObject); |
| | | |
| | | /** |
| | | * 保存部门角色关联信息,带查重功能 |
| | | * @param userId 用户id |
| | | * @param deptIds 部门oid |
| | | * 保存部门角色关联信息,带查重功能,多对多保存 |
| | | * @param userOIds 用户id |
| | | * @param deptId 部门oid |
| | | * @return |
| | | */ |
| | | boolean saveUserDepts(String userId, List<String> deptIds) throws PLException; |
| | | boolean saveUsersDept(String[] userOIds, String deptId) throws PLException; |
| | | |
| | | } |