Commit 858ae0f029562b72287f13256fc8b49817ceef96

Authored by 648540858
1 parent 47ddb0a3

移除录像删除接口,不再管理录像删除

src/main/java/top/panll/assist/controller/RecordController.java
@@ -124,15 +124,4 @@ public class RecordController { @@ -124,15 +124,4 @@ public class RecordController {
124 public long fileDuration( @RequestParam String app, @RequestParam String stream) { 124 public long fileDuration( @RequestParam String app, @RequestParam String stream) {
125 return videoFileService.fileDuration(app, stream); 125 return videoFileService.fileDuration(app, stream);
126 } 126 }
127 -  
128 - /**  
129 - * 删除文件  
130 - */  
131 - @Operation(summary ="删除文件")  
132 - @Parameter(name = "fileLIstInfo", description = "FileLIstInfo", required = true)  
133 - @ResponseBody  
134 - @PostMapping(value = "/file/delete", produces = "application/json;charset=UTF-8")  
135 - public int deleteFile( @RequestBody FileLIstInfo fileLIstInfo) {  
136 - return videoFileService.deleteFile(fileLIstInfo.getFilePathList());  
137 - }  
138 } 127 }