| | |
| | | * @param pageHelper |
| | | * @return |
| | | */ |
| | | DataGrid<SmPasswordStrategyVO> refDataGrid(Map<String, String> conditionMap, PageHelper pageHelper) throws PLException; |
| | | DataGrid<SmPasswordStrategyVO> refDataGrid(Map<String, String> conditionMap, PageHelper pageHelper) throws Exception; |
| | | |
| | | /** |
| | | * 查询密码安全策略,下拉使用的接口 |
| | |
| | | * @param passwordStrategId |
| | | * @return |
| | | */ |
| | | boolean saveUserPasswordStrateg(String[] userIds, String passwordStrategId) throws PLException; |
| | | boolean saveUserPasswordStrateg(String[] userIds, String passwordStrategId) throws Exception; |
| | | |
| | | /** |
| | | * 新增密码策略 |
| | | * @param spsDto |
| | | * @return |
| | | */ |
| | | boolean addPasswordStrateg(SmPasswordStrategyDTO spsDto) throws PLException; |
| | | boolean addPasswordStrateg(SmPasswordStrategyDTO spsDto) throws Exception; |
| | | |
| | | /** |
| | | * 修改密码策略 |
| | | * @param spsDto |
| | | * @return |
| | | */ |
| | | boolean updatePasswordStrateg(SmPasswordStrategyDTO spsDto) throws PLException; |
| | | boolean updatePasswordStrateg(SmPasswordStrategyDTO spsDto) throws Exception; |
| | | |
| | | /** |
| | | * 删除密码策略 |
| | | * @param pwdIds |
| | | * @return |
| | | */ |
| | | boolean delPasswordStrateg(String[] pwdIds) throws PLException; |
| | | boolean delPasswordStrateg(String[] pwdIds) throws Exception; |
| | | |
| | | /** |
| | | * 根据主键查询密码策略map对象 |