chenrui
2025-04-09 e2c5017787d7fc5eea2afb8bc84bca0db054ad8c
basic-server/src/main/java/com/ruoyi/basic/controller/WorkShopController.java
@@ -63,4 +63,10 @@
    public Result partFileList(Page page,@RequestParam("partNo") String partNo) {
        return Result.success(workShopFileService.partFileList(page,partNo));
    }
    @ApiOperation(value = "查询附件列表")
    @GetMapping("/fileListById")
    public Result fileListById(@RequestParam("workShopId") String workShopId) {
        return Result.success(workShopFileService.fileListById(Integer.valueOf(workShopId)));
    }
}