|
@@ -20,7 +20,6 @@ import com.tourism.webadmin.back.vo.DeliveryOrderVo;
|
|
|
import com.tourism.webadmin.config.ApplicationConfig;
|
|
|
import io.swagger.v3.oas.annotations.tags.Tag;
|
|
|
import lombok.extern.slf4j.Slf4j;
|
|
|
-import org.springframework.beans.BeanUtils;
|
|
|
import org.springframework.beans.factory.annotation.Autowired;
|
|
|
import org.springframework.web.bind.annotation.*;
|
|
|
|
|
@@ -33,6 +32,7 @@ import java.util.stream.Collectors;
|
|
|
@Slf4j
|
|
|
@RestController
|
|
|
@RequestMapping("/wechat/delivery/order")
|
|
|
+//@SaIgnore
|
|
|
public class WechatDeliveryOrderController {
|
|
|
|
|
|
@Autowired
|
|
@@ -44,6 +44,7 @@ public class WechatDeliveryOrderController {
|
|
|
/**
|
|
|
* 创建订单
|
|
|
*/
|
|
|
+// @SaIgnore
|
|
|
@PostMapping("/createOrder")
|
|
|
public ResponseResult<Long> createOrder(@MyRequestBody DeliveryOrderDto deliveryOrderDto,
|
|
|
@MyRequestBody List<DeliveryOrderItemsDto> deliveryOrderItemsDtoList) {
|
|
@@ -61,6 +62,7 @@ public class WechatDeliveryOrderController {
|
|
|
/**
|
|
|
* 订单列表
|
|
|
*/
|
|
|
+// @SaIgnore
|
|
|
@GetMapping("/orderList")
|
|
|
public ResponseResult<MyPageData<DeliveryOrderVo>> orderList(DeliveryOrderWebDto deliveryOrderDtoFilter) {
|
|
|
if (deliveryOrderDtoFilter != null) {
|
|
@@ -88,6 +90,7 @@ public class WechatDeliveryOrderController {
|
|
|
/**
|
|
|
* 订单详情
|
|
|
*/
|
|
|
+// @SaIgnore
|
|
|
@RequestMapping("/orderDetail")
|
|
|
public ResponseResult<DeliveryOrderVo> orderDetail(@RequestParam Long id) {
|
|
|
DeliveryOrder deliveryOrder = deliveryOrderService.getByIdWithRelation(id, MyRelationParam.full());
|