src/main/java/com/ruoyi/sales/controller/ShippingInfoController.java
@@ -37,6 +37,7 @@ import javax.servlet.http.HttpServletResponse; import java.io.IOException; import java.math.BigDecimal; import java.time.LocalDate; import java.util.List; @@ -135,4 +136,10 @@ util.exportExcel(response, list, "发货信息"); } @GetMapping("/getByCustomerName") @ApiOperation("通过客户名称查询") public AjaxResult getByCustomerName(String customerName) { return AjaxResult.success(shippingInfoService.getShippingInfoByCustomerName(customerName)); } }