| | |
| | | * @throws DAOException 数据处理异常 |
| | | */ |
| | | public void updateUserCredentialsInstance(Map businessUserCredentials) throws DAOException; |
| | | |
| | | /** |
| | | * 查询员工总量 |
| | | * @param businessUser |
| | | * @return |
| | | * @throws DAOException |
| | | */ |
| | | public int getStaffCount(Map businessUser) throws DAOException; |
| | | |
| | | |
| | | /** |
| | | * 查询组织信息(instance过程) |
| | | * 根据bId 查询组织信息 |
| | | * @param info bId 信息 |
| | | * @return 组织信息 |
| | | * @throws DAOException DAO异常 |
| | | */ |
| | | List<Map> getStaffs(Map info) throws DAOException; |
| | | |
| | | |
| | | /** |
| | | * 查询用户总量 |
| | | * @param businessUser |
| | | * @return |
| | | * @throws DAOException |
| | | */ |
| | | public int getUserCount(Map businessUser) throws DAOException; |
| | | |
| | | |
| | | /** |
| | | * 查询用户信息(instance过程) |
| | | * 根据bId 查询组织信息 |
| | | * @param info bId 信息 |
| | | * @return 组织信息 |
| | | * @throws DAOException DAO异常 |
| | | */ |
| | | List<Map> getUsers(Map info) throws DAOException; |
| | | |
| | | /** |
| | | * 查询用户密码 |
| | | * 根据bId 查询组织信息 |
| | | * @param info bId 信息 |
| | | * @return 组织信息 |
| | | * @throws DAOException DAO异常 |
| | | */ |
| | | List<Map> getUserHasPwd(Map info) throws DAOException; |
| | | } |