| | |
| | | import cn.lili.modules.order.order.entity.dto.OrderSearchParams; |
| | | import cn.lili.modules.order.order.entity.vo.OrderDetailVO; |
| | | import cn.lili.modules.order.order.entity.vo.OrderSimpleVO; |
| | | import cn.lili.modules.order.order.service.OrderPackageService; |
| | | import cn.lili.modules.order.order.service.OrderPriceService; |
| | | import cn.lili.modules.order.order.service.OrderService; |
| | | import com.baomidou.mybatisplus.core.metadata.IPage; |
| | |
| | | */ |
| | | @Autowired |
| | | private OrderPriceService orderPriceService; |
| | | |
| | | @Autowired |
| | | private OrderPackageService orderPackageService; |
| | | |
| | | |
| | | @ApiOperation(value = "查询订单列表分页") |
| | |
| | | return ResultUtil.data(orderService.getTraces(orderSn)); |
| | | } |
| | | |
| | | @GetMapping(value = "/getPackage/{orderSn}") |
| | | public ResultMessage<Object> getPackage(@NotBlank(message = "订单编号不能为空") @PathVariable String orderSn) { |
| | | return ResultUtil.data(orderPackageService.getOrderPackageVOList(orderSn)); |
| | | } |
| | | @ApiOperation(value = "卖家订单备注") |
| | | @PutMapping("/{orderSn}/sellerRemark") |
| | | public ResultMessage<Object> sellerRemark(@PathVariable String orderSn, @RequestParam String sellerRemark) { |