zhuo
2025-04-18 8b4d7246fb735d965195201e80178b5d1528a486
cnas-device/src/main/java/com/ruoyi/device/controller/DeviceImpowerController.java
@@ -81,7 +81,7 @@
    /**
     * 提交批准
     */
    @ApiOperation("提交批准")
    @ApiOperation("提交批准通知")
    @PostMapping("/submitReviewImpowerStatus")
    public Result submitReviewImpowerStatus(@RequestBody DeviceImpowerDto deviceImpowerDto) {
        return deviceImpowerService.submitReviewImpowerStatus(deviceImpowerDto);
@@ -90,7 +90,7 @@
    /**
     * 使用授权批准
     */
    @ApiOperation("使用授权批准")
    @ApiOperation("授权批准")
    @PostMapping("/reviewImpowerStatus")
    public Result reviewImpowerStatus(@RequestBody DeviceImpowerDto deviceImpowerDto) {
        return deviceImpowerService.reviewImpowerStatus(deviceImpowerDto);
@@ -101,7 +101,7 @@
     */
    @ApiOperation("导出使用授权")
    @GetMapping("/exportDeviceImpower")
    public Result exportDeviceImpower(@RequestParam("ImpowerId") Integer impowerId, HttpServletResponse response) {
    public Result exportDeviceImpower(@RequestParam("impowerId") Integer impowerId, HttpServletResponse response) {
        return deviceImpowerService.exportDeviceImpowerDto(impowerId, response);
    }