Browse Source

增加班级调整的排课

周箭河 5 years ago
parent
commit
65bf4d1e51

+ 0 - 29
mec-web/src/main/java/com/ym/mec/web/controller/student/StudentPaymentOrderController.java

@@ -1,29 +0,0 @@
-package com.ym.mec.web.controller.student;
-
-import io.swagger.annotations.Api;
-import io.swagger.annotations.ApiOperation;
-
-import org.springframework.beans.factory.annotation.Autowired;
-import org.springframework.web.bind.annotation.GetMapping;
-import org.springframework.web.bind.annotation.RequestMapping;
-import org.springframework.web.bind.annotation.RestController;
-
-import com.ym.mec.biz.dal.page.StudentPaymentOrderQueryInfo;
-import com.ym.mec.biz.service.StudentPaymentOrderService;
-import com.ym.mec.common.controller.BaseController;
-
-@RequestMapping("studentPaymentOrder")
-@Api(tags = "学生缴费订单服务")
-@RestController
-public class StudentPaymentOrderController extends BaseController {
-
-    @Autowired
-    private StudentPaymentOrderService studentPaymentOrderService;
-
-    @ApiOperation(value = "获取学员订单列表")
-    @GetMapping("/queryOrderPage")
-    public Object queryOrderPage(StudentPaymentOrderQueryInfo queryInfo){
-        return succeed(studentPaymentOrderService.queryPage(queryInfo));
-    }
-
-}