| | |
| | | |
| | | @ApiOperation(value = "根据软件id修改软件锁定状态") |
| | | @GetMapping("updateSoftwareLock") |
| | | public Response updateSoftwareLock(@RequestParam String fileUrl,@RequestParam int lockFlag,@RequestParam String localReason){ |
| | | return service.updateSoftwareLock(fileUrl,lockFlag,localReason); |
| | | public Response updateSoftwareLock(@RequestParam String fileUrl,@RequestParam int lockFlag,@RequestParam int lockFlagNow,@RequestParam String localReason){ |
| | | return service.updateSoftwareLock(fileUrl,lockFlagNow,lockFlag,localReason); |
| | | } |
| | | |
| | | @ApiOperation(value = "根据软件软件名实现软件删除") |
| | | @GetMapping("deleteSoftware") |
| | | public Response deleteSoftware( @RequestParam String fileName,@RequestParam String version){ |
| | | return service.deleteSoftware(fileName,version); |
| | | } |
| | | } |