田源
2024-07-11 18e2c156de069eaee2f989e09fda061841aae605
Source/plt-web/plt-web-parent/plt-web/src/main/java/com/vci/frameworkcore/compatibility/SmRoleQueryServiceI.java
@@ -179,14 +179,23 @@
     * @return
     * @throws VciBaseException
     */
    BaseResult importRole(File file) throws VciBaseException;
    BaseResult importRole(File file) throws Exception;
    /**
     * 保存用户角色关联关系
     * 成员管理分配角色调用,保存用户角色关联关系
     * @param userOids
     * @param roleIds
     * @return
     */
    boolean saveRights(String[] userOids, String[] roleIds) throws PLException;
    /**
     * 角色管理分配成员接口调用
     * @param userOids
     * @param roleId
     * @return
     * @throws PLException
     */
    boolean saveRight(String[] userOids, String roleId) throws PLException;
}