| | |
| | | return mallAppService.findMallGoodsListNoPage(queryDto); |
| | | } |
| | | |
| | | @ApiOperation(value = "创建订单", notes = "创建订单") |
| | | @ApiOperation(value = "会员结算", notes = "会员结算") |
| | | @PostMapping(value = "/createAppOrder") |
| | | public FebsResponse createAppOrder(@RequestBody ApiAddOrderDto addOrderDto) { |
| | | return mallAppService.createAppOrder(addOrderDto); |
| | | } |
| | | |
| | | @ApiOperation(value = "普通结算", notes = "普通结算") |
| | | @PostMapping(value = "/normalInsure") |
| | | public FebsResponse normalInsure(@RequestBody ApiNormalInsureDto normalInsureDto) { |
| | | return mallAppService.normalInsure(normalInsureDto); |
| | | } |
| | | |
| | | @ApiOperation(value = "挂单", notes = "挂单") |
| | | @PostMapping(value = "/registAppOrder") |
| | | public FebsResponse registAppOrder(@RequestBody ApiRegistAppOrderDto registAppOrderDto) { |
| | | return mallAppService.registAppOrder(registAppOrderDto); |
| | | } |
| | | |
| | | @ApiOperation(value = "取单列表", notes = "取单列表") |
| | | @ApiResponses({ |
| | | @ApiResponse(code = 200, message = "success", response = ApiGetOrderListVo.class) |
| | | }) |
| | | @PostMapping(value = "/getOrderList") |
| | | public FebsResponse getOrderList(@RequestBody ApiGetOrderListDto orderListDto) { |
| | | return mallAppService.getOrderList(orderListDto); |
| | | } |
| | | |
| | | @ApiOperation(value = "取单", notes = "取单") |
| | | @ApiResponses({ |
| | | @ApiResponse(code = 200, message = "success", response = ApiGetOrderListVo.class) |
| | | }) |
| | | @PostMapping(value = "/getOrder") |
| | | public FebsResponse getOrder(@RequestBody ApiGetOrderDto apiGetOrderDto) { |
| | | return mallAppService.getOrder(apiGetOrderDto); |
| | | } |
| | | |
| | | } |