feat:保留两位

This commit is contained in:
苏竹红
2025-01-03 09:28:05 +08:00
parent 7691501ffe
commit 4a1ae375c7

View File

@@ -33,8 +33,9 @@ public class MiniInvoicingController {
@GetMapping("/getInvoicingByShopId")
@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));
}