Commit b207ead5 authored by zhengyi's avatar zhengyi

补充客户详情订单统计接口

parent 560d52ff
...@@ -363,6 +363,15 @@ public class OrderController { ...@@ -363,6 +363,15 @@ public class OrderController {
return success(pageResult); return success(pageResult);
} }
@GetMapping("/customer-statistics-order")
@ApiOperation("客户详情订单统计")
// @PreAuthorize("@ss.hasPermission('ecw:order:query')")
public CommonResult<StatisticsOrderVO> getCustomerStatisticsOrder(OrderQueryVO query, PageVO page) {
query.setUserType(UserTypeEnum.ADMIN.getValue());
StatisticsOrderVO vo = orderQueryService.statisticsMyOrder(query);
return success(vo);
}
@GetMapping("/customer-order-page") @GetMapping("/customer-order-page")
@ApiOperation("客户详情订单分页") @ApiOperation("客户详情订单分页")
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment