| | |
| | | return CommonResult.success(agencyService.agencyList(agency)); |
| | | } |
| | | |
| | | @RequiresPermissions("system:assess:monitor") |
| | | @ApiOperation(value = "机构列表") |
| | | @GetMapping("/agencyLists") |
| | | public CommonResult agencyLists(SysAgency agency){ |
| | | return CommonResult.success(agencyService.agencyLists(agency)); |
| | | } |
| | | |
| | | |
| | | @RequiresPermissions(value={"system:assess:monitor","system:assess:agency"},logical = Logical.OR) |
| | | @ApiOperation(value = "根据id获取机构详情") |
| | | @ApiImplicitParams({ |
| | | @ApiImplicitParam(paramType = "query", name = "agencyId", dataType = "int", required = true, value = "机构id") |