| | |
| | | * @param merchantId |
| | | * @return |
| | | */ |
| | | @ApiOperation(value = "获取自提点") |
| | | @ApiOperation(value = "获取自提点",response = ConvenientElevatingPointVO.class) |
| | | @ApiImplicitParams({@ApiImplicitParam(name = "merchantId", value = "商家Id", required = true), |
| | | @ApiImplicitParam(name = "lat", value = "经度", required = true), @ApiImplicitParam(name = "lng", value = "纬度", required = true)}) |
| | | @GetMapping("/point/findPointByMerchantId") |
| | |
| | | @PostMapping("/shipOrderFlower") |
| | | @ApiOperation(value = "订单发货") |
| | | public R shipOrderFlower(@RequestBody ComShopOrderShipDTO orderShipDTO) { |
| | | orderShipDTO.setOperUserAccount(this.getLoginUserInfo().getAccount()); |
| | | return communityService.shipOrderFlower(orderShipDTO); |
| | | } |
| | | } |