|
@@ -0,0 +1,29 @@
|
|
|
+package com.ym.mec.web.controller;
|
|
|
+
|
|
|
+import com.ym.mec.biz.service.StudentStatisticsService;
|
|
|
+import com.ym.mec.common.controller.BaseController;
|
|
|
+import com.ym.mec.common.page.QueryInfo;
|
|
|
+import io.swagger.annotations.Api;
|
|
|
+import io.swagger.annotations.ApiOperation;
|
|
|
+import org.springframework.beans.factory.annotation.Autowired;
|
|
|
+import org.springframework.security.access.prepost.PreAuthorize;
|
|
|
+import org.springframework.web.bind.annotation.GetMapping;
|
|
|
+import org.springframework.web.bind.annotation.RequestMapping;
|
|
|
+import org.springframework.web.bind.annotation.RestController;
|
|
|
+
|
|
|
+@RequestMapping("studentStatistics")
|
|
|
+@Api(tags = "学员小课统计")
|
|
|
+@RestController
|
|
|
+public class StudentStatisticsController extends BaseController {
|
|
|
+
|
|
|
+ @Autowired
|
|
|
+ private StudentStatisticsService studentStatisticsService;
|
|
|
+
|
|
|
+ @ApiOperation(value = "分页查询收费类型列表")
|
|
|
+ @GetMapping("/queryPage")
|
|
|
+ @PreAuthorize("@pcs.hasPermissions('studentStatistics/queryPage')")
|
|
|
+ public Object queryPage(QueryInfo queryInfo) {
|
|
|
+// return succeed(chargeTypeService.queryPage(queryInfo));
|
|
|
+ return succeed();
|
|
|
+ }
|
|
|
+}
|