package com.artfess.examine.controller; import com.artfess.base.annotation.ApiGroup; import com.artfess.base.constants.ApiGroupConsts; import com.artfess.base.controller.BaseController; import com.artfess.examine.manager.ExamPaperTaskManager; import com.artfess.examine.model.ExamPaperTask; import io.swagger.annotations.Api; import org.springframework.web.bind.annotation.RequestMapping; import org.springframework.web.bind.annotation.RestController; /** * 考试任务表 前端控制器 * * @company 阿特菲斯信息技术有限公司 * @author min.wu * @since 2022-10-26 */ @RestController @Api(tags = "基础数据-考试任务") @RequestMapping("/exam/paper/task/") @ApiGroup(group = {ApiGroupConsts.GROUP_BIZ}) public class ExamPaperTaskController extends BaseController { }