xin
2025-06-24 b5e0a4f030f4741825b7a8d3d65bc1c2ba616ea1
oying-system/src/main/java/com/oying/modules/sh/rest/OrderProductSnapshotController.java
@@ -5,22 +5,25 @@
import com.oying.modules.sh.service.OrderProductSnapshotService;
import com.oying.modules.sh.domain.dto.OrderProductSnapshotQueryCriteria;
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:订单商品快照")
@@ -39,16 +42,16 @@
    @GetMapping
    @ApiOperation("查询订单商品快照")
    @PreAuthorize("@el.check('orderProductSnapshot:list')")
    public ResponseEntity<PageResult<OrderProductSnapshot>> queryOrderProductSnapshot(OrderProductSnapshotQueryCriteria criteria){
    public ResponseEntity<Object> queryOrderProductSnapshot(OrderProductSnapshotQueryCriteria criteria) {
        Page<Object> page = new Page<>(criteria.getPage(), criteria.getSize());
        return new ResponseEntity<>(orderProductSnapshotService.queryAll(criteria,page),HttpStatus.OK);
        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){
    public ResponseEntity<Object> createOrderProductSnapshot(@Validated @RequestBody OrderProductSnapshot resources) {
        orderProductSnapshotService.create(resources);
        return new ResponseEntity<>(HttpStatus.CREATED);
    }
@@ -57,7 +60,7 @@
    @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);
    }