feat:发票回传

This commit is contained in:
苏竹红
2025-01-02 14:16:36 +08:00
parent b76e1a8968
commit 6773632757

View File

@@ -50,7 +50,7 @@ public class InvoicingController {
@ApiImplicitParams({
@ApiImplicitParam(name = "shopId", value = "门店shopId", required = true)
})
public ResponseResult<InvoicingDTO> getInvoicingByShopId(@RequestParam("lineId")Long shopId) {
public ResponseResult<InvoicingDTO> getInvoicingByShopId(@RequestParam("shopId")Long shopId) {
return ResponseResult.success(invoicingService.getInvoicingByShopId(shopId));
}