|
@@ -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));
|
|
|
- }
|
|
|
-
|
|
|
-}
|