whycxzp
2021-09-28 7d64716cb0d406f21cde03976fd273bd07fdc06f
src/main/java/com/whyc/controller/DeviceResourceApplyController.java
@@ -51,15 +51,15 @@
    @PutMapping("approve")
    @ApiOperation(value = "审核")
    public Response approve(@RequestBody DeviceResourceApply resourceApply){
    public Response approve(@RequestParam Integer id,@RequestParam Integer status){
        return null;
        return service.approve(id,status);
    }
    @GetMapping("applyInfo")
    @ApiOperation(value = "查询单个申请状态-根据设备id")
    public Response applyInfo(@RequestBody DeviceResourceApply resourceApply){
    @ApiOperation(value = "查询单个申请状态-根据申请id")
    public Response getApplyInfo(@RequestParam Integer id){
        return null;
        return service.getApplyInfo(id);
    }
}