|
@@ -1,6 +1,5 @@
|
|
|
package com.ym.mec.web.controller;
|
|
|
|
|
|
-import com.ym.mec.biz.dal.dto.ActivityStudentAdjustDto;
|
|
|
import com.ym.mec.biz.dal.dto.ActivityUserMapperAddDto;
|
|
|
import com.ym.mec.biz.dal.page.ActivityStudentQueryInfo;
|
|
|
import com.ym.mec.biz.service.ActivityUserMapperService;
|
|
@@ -15,7 +14,6 @@ import org.springframework.web.bind.annotation.RequestMapping;
|
|
|
import org.springframework.web.bind.annotation.RestController;
|
|
|
|
|
|
import java.math.BigDecimal;
|
|
|
-import java.util.List;
|
|
|
|
|
|
@Api(tags = "学员活动排课记录服务")
|
|
|
@RequestMapping("activityUserMapper")
|
|
@@ -47,4 +45,11 @@ public class ActivityUserMapperController extends BaseController {
|
|
|
public Object queryActivityUserMapper(ActivityStudentQueryInfo queryInfo){
|
|
|
return succeed(activityUserMapperService.queryActivityUserMapper(queryInfo));
|
|
|
}
|
|
|
+
|
|
|
+ @ApiOperation(value = "获取列表")
|
|
|
+ @RequestMapping("/queryPage")
|
|
|
+ @PreAuthorize("@pcs.hasPermissions('activityUserMapper/queryPage')")
|
|
|
+ public Object queryPage(ActivityStudentQueryInfo queryInfo){
|
|
|
+ return succeed(activityUserMapperService.queryPage(queryInfo));
|
|
|
+ }
|
|
|
}
|