From 092c7132a48494d69ebb3f72ff8cab3379f7c9ab Mon Sep 17 00:00:00 2001
From: 彭雪彬 <1724387007@qq.com>
Date: Wed, 03 Sep 2025 16:48:32 +0800
Subject: [PATCH] 骑手收入明细查询
---
oying-system/src/main/java/com/oying/modules/sh/rest/OrderProductSnapshotController.java | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/oying-system/src/main/java/com/oying/modules/sh/rest/OrderProductSnapshotController.java b/oying-system/src/main/java/com/oying/modules/sh/rest/OrderProductSnapshotController.java
index 972139c..4530653 100644
--- a/oying-system/src/main/java/com/oying/modules/sh/rest/OrderProductSnapshotController.java
+++ b/oying-system/src/main/java/com/oying/modules/sh/rest/OrderProductSnapshotController.java
@@ -26,7 +26,7 @@
private final OrderProductSnapshotService orderProductSnapshotService;
@GetMapping
- @ApiOperation("查询订单商品快照")
+ @ApiOperation("根据订单号查询订单商品快照")
public ResponseEntity<Object> queryOrderProductSnapshot(@RequestParam String orderNum) {
return new ResponseEntity<>(R.success(orderProductSnapshotService.queryOrderProductSnapshot(orderNum)), HttpStatus.OK);
}
--
Gitblit v1.9.3