src/main/java/com/ruoyi/sales/controller/ShippingInfoController.java
@@ -106,6 +106,7 @@ /** * 导出发货信息管理 */ @Log(title = "发货信息", businessType = BusinessType.EXPORT) @PostMapping("/export") @Operation(summary = "导出发货信息") public void export(HttpServletResponse response) { @@ -116,7 +117,7 @@ @GetMapping("/getByCustomerName") @Operation(summary = "通过客户名称查询") @Operation(summary = "通过客户名称查询关联的发货单号") public AjaxResult getByCustomerName(String customerName) { return AjaxResult.success(shippingInfoService.getShippingInfoByCustomerName(customerName)); }