根据案件id查附件

This commit is contained in:
18792927508
2023-11-30 15:04:09 +08:00
parent 45d23fbab6
commit de1644db2c
4 changed files with 53 additions and 3 deletions
@@ -132,6 +132,18 @@ public class VideoController extends BaseController {
return videoService.htmlToPDF(reservedConferenceVO);
}
/**
* 根据案件id和类型查询附件
* @param caseAppliId
* @param annexType
* @return
*/
@Anonymous
@GetMapping("attachListByCaseId")
public AjaxResult attachListByCaseId( @RequestParam("caseAppliId") Long caseAppliId,@RequestParam("annexType") Integer annexType) {
return videoService.attachListByCaseId(caseAppliId,annexType);
}
}