lxw
2022-09-03 370e9a253370a74cfffbe6ba25719a3798bdb09d
src/main/java/com/whyc/controller/MaterialController.java
@@ -53,4 +53,10 @@
    public Response zipParse(MultipartFile file) throws IOException, InvalidFormatException {
        return service.zipParse(file);
    }
    @ApiOperation(value = "根据物料id查询返回附件文件夹下所有的文件列表",notes = "9.3修改后使用")
    @GetMapping("getAttachByMaterialId")
    public Response getAttachByMaterialId(@RequestParam int materialId){
        return service.getAttachByMaterialId(materialId);
    }
}