存储新增:腾讯云、华为云

短信新增:腾讯云、华为云
物流新增:快递100
物流查询方式新增:快递查询地图轨迹
This commit is contained in:
pikachu1995@126.com
2023-02-16 18:16:37 +08:00
parent f92756c103
commit 98907b33aa
38 changed files with 2058 additions and 709 deletions

View File

@@ -116,6 +116,16 @@ public class OrderBuyerController {
return ResultUtil.data(orderService.getTraces(orderSn));
}
@ApiOperation(value = "查询地图版物流踪迹")
@ApiImplicitParams({
@ApiImplicitParam(name = "orderSn", value = "订单编号", required = true, dataType = "String", paramType = "path")
})
@PostMapping(value = "/getMapTraces/{orderSn}")
public ResultMessage<Object> getMapTraces(@NotBlank(message = "订单编号不能为空") @PathVariable String orderSn) {
OperationalJudgment.judgment(orderService.getBySn(orderSn));
return ResultUtil.data(orderService.getMapTraces(orderSn));
}
@PreventDuplicateSubmissions
@ApiOperation(value = "开票")