|
|
@@ -196,6 +196,17 @@ public class StatisticsApiController extends CertifyApiController {
|
|
|
}
|
|
|
|
|
|
|
|
|
+ /**
|
|
|
+ * 订单项目数据统计导出
|
|
|
+ */
|
|
|
+ @RequestMapping(value = "/orderProject/export",method = RequestMethod.GET)
|
|
|
+ public Result orderProjectExport(InputOrderProject in){
|
|
|
+ List<OutOrderProject> list = userStaticticsService.orderProject(in);
|
|
|
+ NewExcelUtil<OutOrderProject> excelUtil=new NewExcelUtil<>(OutOrderProject.class);
|
|
|
+ return excelUtil.exportExcel(list,"订单项目数据统计表",uploadPath);
|
|
|
+ }
|
|
|
+
|
|
|
+
|
|
|
|
|
|
|
|
|
}
|