From 23e3602b4f3ebde8665c3ab3a56ef81b8d671e0d Mon Sep 17 00:00:00 2001
From: zepengdev <lzpsmith@outlook.com>
Date: Wed, 17 Sep 2025 19:17:21 +0800
Subject: [PATCH] feat: 增加商品库存设置功能
---
oying-system/src/main/java/com/oying/modules/sh/rest/OrderProductSnapshotController.java | 49 +++++++++----------------------------------------
1 files changed, 9 insertions(+), 40 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 07d1508..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
@@ -3,24 +3,20 @@
import com.oying.annotation.Log;
import com.oying.modules.sh.domain.OrderProductSnapshot;
import com.oying.modules.sh.service.OrderProductSnapshotService;
-import com.oying.modules.sh.domain.dto.OrderProductSnapshotQueryCriteria;
+import com.oying.utils.R;
import lombok.RequiredArgsConstructor;
-import java.util.List;
+
import org.springframework.http.HttpStatus;
import org.springframework.http.ResponseEntity;
import org.springframework.security.access.prepost.PreAuthorize;
import org.springframework.validation.annotation.Validated;
import org.springframework.web.bind.annotation.*;
import io.swagger.annotations.*;
-import java.io.IOException;
-import javax.servlet.http.HttpServletResponse;
-import com.baomidou.mybatisplus.extension.plugins.pagination.Page;
-import com.oying.utils.PageResult;
/**
-* @author lixin
-* @date 2025-06-11
-**/
+ * @author lixin
+ * @date 2025-06-11
+ **/
@RestController
@RequiredArgsConstructor
@Api(tags = "SH:订单商品快照")
@@ -29,45 +25,18 @@
private final OrderProductSnapshotService orderProductSnapshotService;
- @ApiOperation("导出数据")
- @GetMapping(value = "/download")
- @PreAuthorize("@el.check('orderProductSnapshot:list')")
- public void exportOrderProductSnapshot(HttpServletResponse response, OrderProductSnapshotQueryCriteria criteria) throws IOException {
- orderProductSnapshotService.download(orderProductSnapshotService.queryAll(criteria), response);
- }
-
@GetMapping
- @ApiOperation("查询订单商品快照")
- @PreAuthorize("@el.check('orderProductSnapshot:list')")
- public ResponseEntity<PageResult<OrderProductSnapshot>> queryOrderProductSnapshot(OrderProductSnapshotQueryCriteria criteria){
- Page<Object> page = new Page<>(criteria.getPage(), criteria.getSize());
- return new ResponseEntity<>(orderProductSnapshotService.queryAll(criteria,page),HttpStatus.OK);
- }
-
- @PostMapping
- @Log("新增订单商品快照")
- @ApiOperation("新增订单商品快照")
- @PreAuthorize("@el.check('orderProductSnapshot:add')")
- public ResponseEntity<Object> createOrderProductSnapshot(@Validated @RequestBody OrderProductSnapshot resources){
- orderProductSnapshotService.create(resources);
- return new ResponseEntity<>(HttpStatus.CREATED);
+ @ApiOperation("根据订单号查询订单商品快照")
+ public ResponseEntity<Object> queryOrderProductSnapshot(@RequestParam String orderNum) {
+ return new ResponseEntity<>(R.success(orderProductSnapshotService.queryOrderProductSnapshot(orderNum)), HttpStatus.OK);
}
@PutMapping
@Log("修改订单商品快照")
@ApiOperation("修改订单商品快照")
@PreAuthorize("@el.check('orderProductSnapshot:edit')")
- public ResponseEntity<Object> updateOrderProductSnapshot(@Validated @RequestBody OrderProductSnapshot resources){
+ public ResponseEntity<Object> updateOrderProductSnapshot(@Validated @RequestBody OrderProductSnapshot resources) {
orderProductSnapshotService.update(resources);
return new ResponseEntity<>(HttpStatus.NO_CONTENT);
- }
-
- @DeleteMapping
- @Log("删除订单商品快照")
- @ApiOperation("删除订单商品快照")
- @PreAuthorize("@el.check('orderProductSnapshot:del')")
- public ResponseEntity<Object> deleteOrderProductSnapshot(@ApiParam(value = "传ID数组[]") @RequestBody List<Long> ids) {
- orderProductSnapshotService.deleteAll(ids);
- return new ResponseEntity<>(HttpStatus.OK);
}
}
--
Gitblit v1.9.3