| | |
| | | * @throws VciBaseException 查询出错的时候会抛出异常,如果是老的项目里不抛出异常 |
| | | */ |
| | | @RequestMapping(value = "/refDataGrid",method = RequestMethod.GET) |
| | | @VciUnCheckRight |
| | | public BaseResult<SmPasswordStrategyVO> refDataGrid(BaseQueryObject queryObject) throws VciBaseException { |
| | | try { |
| | | DataGrid<SmPasswordStrategyVO> pwdStrategyVODataGrid = pwdStrategyQueryService.refDataGrid(queryObject.getConditionMap(),queryObject.getPageHelper()); |
| | |
| | | * @throws VciBaseException |
| | | */ |
| | | @RequestMapping(value = "/selectPwdStrategyMap",method = RequestMethod.GET) |
| | | @VciUnCheckRight |
| | | public BaseResult<List<Map<String,String>>> selectPwdStrategyMap(BaseQueryObject queryObject) throws VciBaseException { |
| | | try { |
| | | List<Map<String,String>> pwdStrategyVODataGrid = pwdStrategyQueryService.selectPwdStrategyMap(queryObject.getConditionMap()); |
| | |
| | | * @return |
| | | */ |
| | | @RequestMapping(value = "/delPasswordStrateg",method = RequestMethod.DELETE) |
| | | @VciUnCheckRight |
| | | public BaseResult delPasswordStrateg(String[] pwdIds){ |
| | | try { |
| | | return pwdStrategyQueryService.delPasswordStrateg(pwdIds) |