Merge remote-tracking branch 'origin/guoshengxiong' into guoshengxiong
This commit is contained in:
commit
17753dfa8c
@ -71,7 +71,7 @@ public class ExamCourseController {
|
||||
*
|
||||
* @return
|
||||
*/
|
||||
@OperLog(operModul = "学习资料管理", operType = "分页查询", operDesc = "分页列表查询学习资料信息")
|
||||
@OperLog(operModul = "课程管理", operType = "分页查询", operDesc = "分页列表查询学习资料信息")
|
||||
@ApiOperation(value = " 分页列表查询学习资料信息", notes = "分页列表查询学习资料信息", httpMethod = "POST")
|
||||
@ApiImplicitParams({
|
||||
@ApiImplicitParam(name = "pageNo", value = "页数", paramType = "body", required = true, defaultValue = "1", dataType = "Integer"),
|
||||
@ -102,7 +102,7 @@ public class ExamCourseController {
|
||||
* @param examCourse
|
||||
* @return
|
||||
*/
|
||||
@OperLog(operModul = "学习资料管理", operType = "列表查询", operDesc = "列表查询学习资料信息")
|
||||
@OperLog(operModul = "课程管理", operType = "列表查询", operDesc = "列表查询学习资料信息")
|
||||
@ApiOperation(value = " 列表查询学习资料信息", notes = "列表查询学习资料信息", httpMethod = "POST")
|
||||
@PostMapping(value = "/list")
|
||||
public Result<List<ExamCourse>> queryList(@RequestBody ExamCourse examCourse) {
|
||||
@ -117,7 +117,7 @@ public class ExamCourseController {
|
||||
* @param examCourseVo
|
||||
* @return
|
||||
*/
|
||||
@OperLog(operModul = "学习资料管理", operType = "新增", operDesc = "添加学习资料信息")
|
||||
@OperLog(operModul = "课程管理", operType = "新增", operDesc = "添加学习资料信息")
|
||||
@ApiOperation(value = " 添加学习资料信息", notes = "添加学习资料信息", httpMethod = "POST")
|
||||
@PostMapping(value = "/add")
|
||||
public Result<Object> add(@RequestBody ExamCourseVo examCourseVo) {
|
||||
@ -131,7 +131,7 @@ public class ExamCourseController {
|
||||
* @param examCourse
|
||||
* @return
|
||||
*/
|
||||
@OperLog(operModul = "学习资料管理", operType = "修改", operDesc = "编辑学习资料信息")
|
||||
@OperLog(operModul = "课程管理", operType = "修改", operDesc = "编辑学习资料信息")
|
||||
@ApiOperation(value = "编辑学习资料信息", notes = "编辑学习资料信息", httpMethod = "POST")
|
||||
@PostMapping(value = "/edit")
|
||||
public Result<ExamCourse> edit(@RequestBody ExamCourse examCourse) {
|
||||
@ -156,7 +156,7 @@ public class ExamCourseController {
|
||||
*
|
||||
* @return
|
||||
*/
|
||||
@OperLog(operModul = "学习资料管理", operType = "删除", operDesc = "删除学习资料信息")
|
||||
@OperLog(operModul = "课程管理", operType = "删除", operDesc = "删除学习资料信息")
|
||||
@ApiOperation(value = "删除学习资料信息", notes = "删除学习资料信息", httpMethod = "POST")
|
||||
@ApiImplicitParam(name = "id", value = "学习资料ID", paramType = "body", required = true, dataType = "Integer")
|
||||
@PostMapping(value = "/delete")
|
||||
@ -181,7 +181,7 @@ public class ExamCourseController {
|
||||
*
|
||||
* @return
|
||||
*/
|
||||
@OperLog(operModul = "学习资料管理", operType = "批量删除", operDesc = "批量删除学习资料信息")
|
||||
@OperLog(operModul = "课程管理", operType = "批量删除", operDesc = "批量删除学习资料信息")
|
||||
@ApiOperation(value = "批量删除学习资料信息", notes = "批量删除学习资料信息", httpMethod = "POST")
|
||||
@ApiImplicitParam(name = "ids", value = "学习资料ID字符串", paramType = "body", required = true, dataType = "String")
|
||||
@PostMapping(value = "/deleteBatch")
|
||||
@ -202,7 +202,7 @@ public class ExamCourseController {
|
||||
*
|
||||
* @return
|
||||
*/
|
||||
@OperLog(operModul = "学习资料管理", operType = "查询", operDesc = "通过id查询学习资料信息")
|
||||
@OperLog(operModul = "课程管理", operType = "查询", operDesc = "通过id查询学习资料信息")
|
||||
@ApiOperation(value = "通过id查询学习资料信息", notes = "通过id查询学习资料信息", httpMethod = "POST")
|
||||
@ApiImplicitParam(name = "id", value = "学习资料ID", paramType = "body", required = true, dataType = "Integer")
|
||||
@PostMapping(value = "/queryById")
|
||||
|
||||
@ -65,7 +65,7 @@ public class ExamPaperController {
|
||||
*
|
||||
* @return
|
||||
*/
|
||||
@OperLog(operModul = "试题管理", operType = "分页查询", operDesc = "分页列表查询试题信息")
|
||||
@OperLog(operModul = "试卷管理", operType = "分页查询", operDesc = "分页列表查询试题信息")
|
||||
@ApiOperation(value = " 分页列表查询试题信息", notes = "分页列表查询试题信息", httpMethod = "POST")
|
||||
@ApiImplicitParams({
|
||||
@ApiImplicitParam(name = "pageNo", value = "页数", paramType = "body", required = true, defaultValue = "1", dataType = "Integer"),
|
||||
@ -89,7 +89,7 @@ public class ExamPaperController {
|
||||
* @param examPaper
|
||||
* @return
|
||||
*/
|
||||
@OperLog(operModul = "试题管理", operType = "列表查询", operDesc = "列表查询试题信息")
|
||||
@OperLog(operModul = "试卷管理", operType = "列表查询", operDesc = "列表查询试题信息")
|
||||
@ApiOperation(value = " 列表查询试题信息", notes = "列表查询试题信息", httpMethod = "POST")
|
||||
@PostMapping(value = "/list")
|
||||
public Result<List<ExamPaper>> queryList(@RequestBody ExamPaper examPaper) {
|
||||
@ -106,7 +106,7 @@ public class ExamPaperController {
|
||||
* @param examPaperVo
|
||||
* @return
|
||||
*/
|
||||
@OperLog(operModul = "试题管理", operType = "新增", operDesc = "添加试题信息")
|
||||
@OperLog(operModul = "试卷管理", operType = "新增", operDesc = "添加试题信息")
|
||||
@ApiOperation(value = " 添加试题信息", notes = "添加试题信息", httpMethod = "POST")
|
||||
@PostMapping(value = "/add")
|
||||
public Result<Object> add(@RequestBody ExamPaperVo examPaperVo) {
|
||||
@ -120,7 +120,7 @@ public class ExamPaperController {
|
||||
* @param examPaper
|
||||
* @return
|
||||
*/
|
||||
@OperLog(operModul = "试题管理", operType = "修改", operDesc = "编辑试题信息")
|
||||
@OperLog(operModul = "试卷管理", operType = "修改", operDesc = "编辑试题信息")
|
||||
@ApiOperation(value = "编辑试题信息", notes = "编辑试题信息", httpMethod = "POST")
|
||||
@PostMapping(value = "/edit")
|
||||
public Result<ExamPaper> edit(@RequestBody ExamPaper examPaper) {
|
||||
@ -145,7 +145,7 @@ public class ExamPaperController {
|
||||
*
|
||||
* @return
|
||||
*/
|
||||
@OperLog(operModul = "试题管理", operType = "删除", operDesc = "删除试题信息")
|
||||
@OperLog(operModul = "试卷管理", operType = "删除", operDesc = "删除试题信息")
|
||||
@ApiOperation(value = "删除试题信息", notes = "删除试题信息", httpMethod = "POST")
|
||||
@ApiImplicitParam(name = "id", value = "试题ID", paramType = "body", required = true, dataType = "Integer")
|
||||
@PostMapping(value = "/delete")
|
||||
@ -170,7 +170,7 @@ public class ExamPaperController {
|
||||
*
|
||||
* @return
|
||||
*/
|
||||
@OperLog(operModul = "试题管理", operType = "批量删除", operDesc = "批量删除试题信息")
|
||||
@OperLog(operModul = "试卷管理", operType = "批量删除", operDesc = "批量删除试题信息")
|
||||
@ApiOperation(value = "批量删除试题信息", notes = "批量删除试题信息", httpMethod = "POST")
|
||||
@ApiImplicitParam(name = "ids", value = "试题ID字符串", paramType = "body", required = true, dataType = "String")
|
||||
@PostMapping(value = "/deleteBatch")
|
||||
@ -191,7 +191,7 @@ public class ExamPaperController {
|
||||
*
|
||||
* @return
|
||||
*/
|
||||
@OperLog(operModul = "试题管理", operType = "查询", operDesc = "通过id查询试题信息")
|
||||
@OperLog(operModul = "试卷管理", operType = "查询", operDesc = "通过id查询试题信息")
|
||||
@ApiOperation(value = "通过id查询试题信息", notes = "通过id查询试题信息", httpMethod = "POST")
|
||||
@ApiImplicitParam(name = "id", value = "试题ID", paramType = "body", required = true, dataType = "Integer")
|
||||
@PostMapping(value = "/queryById")
|
||||
@ -212,7 +212,7 @@ public class ExamPaperController {
|
||||
*
|
||||
* @return
|
||||
*/
|
||||
@OperLog(operModul = "试题管理", operType = "查询", operDesc = "通过id查询试题详细信息")
|
||||
@OperLog(operModul = "试卷管理", operType = "查询", operDesc = "通过id查询试题详细信息")
|
||||
@ApiOperation(value = "通过id查询试题详细信息", notes = "通过id查询试题详细信息", httpMethod = "POST")
|
||||
@ApiImplicitParam(name = "id", value = "试题ID", paramType = "body", required = true, dataType = "Integer")
|
||||
@PostMapping(value = "/queryDetailById")
|
||||
@ -250,7 +250,7 @@ public class ExamPaperController {
|
||||
* @param examPaper
|
||||
* @return
|
||||
*/
|
||||
@OperLog(operModul = "试题管理", operType = "查询", operDesc = "查询试题总分、参考人数和缺考人数")
|
||||
@OperLog(operModul = "试卷管理", operType = "查询", operDesc = "查询试题总分、参考人数和缺考人数")
|
||||
@ApiOperation(value = " 查询试题总分、参考人数和缺考人数", notes = "查询试题总分、参考人数和缺考人数", httpMethod = "POST")
|
||||
@ApiImplicitParam(name = "id", value = "试题ID", paramType = "body", required = true, dataType = "Integer")
|
||||
@PostMapping(value = "/queryStatInfo")
|
||||
|
||||
@ -71,7 +71,7 @@ import springfox.documentation.annotations.ApiIgnore;
|
||||
@RestController
|
||||
@RequestMapping("/exam/questionBank")
|
||||
@Slf4j
|
||||
@Api(tags = "题目管理管理")
|
||||
@Api(tags = "题目管理")
|
||||
public class ExamQuestionBankController {
|
||||
@Autowired
|
||||
private IExamQuestionBankService examQuestionBankService;
|
||||
@ -90,7 +90,7 @@ public class ExamQuestionBankController {
|
||||
*
|
||||
* @return
|
||||
*/
|
||||
@OperLog(operModul = "题目管理管理", operType = "分页查询", operDesc = "分页列表查询题目管理信息")
|
||||
@OperLog(operModul = "题目管理", operType = "分页查询", operDesc = "分页列表查询题目管理信息")
|
||||
@ApiOperation(value = " 分页列表查询题目管理信息", notes = "分页列表查询题目管理信息", httpMethod = "POST")
|
||||
@ApiImplicitParams({
|
||||
@ApiImplicitParam(name = "pageNo", value = "页数", paramType = "body", required = true, defaultValue = "1", dataType = "Integer"),
|
||||
@ -113,7 +113,7 @@ public class ExamQuestionBankController {
|
||||
* @param examQuestionBank
|
||||
* @return
|
||||
*/
|
||||
@OperLog(operModul = "题目管理管理", operType = "列表查询", operDesc = "列表查询题目管理信息")
|
||||
@OperLog(operModul = "题目管理", operType = "列表查询", operDesc = "列表查询题目管理信息")
|
||||
@ApiOperation(value = " 列表查询题目管理信息", notes = "列表查询题目管理信息", httpMethod = "POST")
|
||||
@ApiImplicitParams({
|
||||
@ApiImplicitParam(name = "type", value = "试题类型(1:单选题;2:多选题;3:填空题;)", paramType = "body"),
|
||||
@ -133,7 +133,7 @@ public class ExamQuestionBankController {
|
||||
* @param randomQueryList
|
||||
* @return
|
||||
*/
|
||||
@OperLog(operModul = "题目管理管理", operType = "列表查询", operDesc = "随机获取题目")
|
||||
@OperLog(operModul = "题目管理", operType = "列表查询", operDesc = "随机获取题目")
|
||||
@ApiOperation(value = " 随机获取题目", notes = "随机获取题目", httpMethod = "POST")
|
||||
@PostMapping(value = "/random")
|
||||
public Result<List<ExamQuestionBank>> random(@RequestBody List<RandomQuery> randomQueryList) {
|
||||
@ -170,7 +170,7 @@ public class ExamQuestionBankController {
|
||||
* @param examQuestionBankVo
|
||||
* @return
|
||||
*/
|
||||
@OperLog(operModul = "题目管理管理", operType = "新增", operDesc = "添加题目管理信息")
|
||||
@OperLog(operModul = "题目管理", operType = "新增", operDesc = "添加题目管理信息")
|
||||
@ApiOperation(value = " 添加题目管理信息", notes = "添加题目管理信息", httpMethod = "POST")
|
||||
@PostMapping(value = "/add")
|
||||
public Result<Object> add(@RequestBody ExamQuestionBankVo examQuestionBankVo) {
|
||||
@ -184,7 +184,7 @@ public class ExamQuestionBankController {
|
||||
* @param examQuestionBankVo
|
||||
* @return
|
||||
*/
|
||||
@OperLog(operModul = "题目管理管理", operType = "修改", operDesc = "编辑题目管理信息")
|
||||
@OperLog(operModul = "题目管理", operType = "修改", operDesc = "编辑题目管理信息")
|
||||
@ApiOperation(value = "编辑题目管理信息", notes = "编辑题目管理信息", httpMethod = "POST")
|
||||
@PostMapping(value = "/edit")
|
||||
public Result<ExamQuestionBank> edit(@RequestBody ExamQuestionBankVo examQuestionBankVo) {
|
||||
@ -210,7 +210,7 @@ public class ExamQuestionBankController {
|
||||
* @param examQuestionBank
|
||||
* @return
|
||||
*/
|
||||
@OperLog(operModul = "题目管理管理", operType = "修改", operDesc = "移动题目类型")
|
||||
@OperLog(operModul = "题目管理", operType = "修改", operDesc = "移动题目类型")
|
||||
@ApiOperation(value = "移动题目类型", notes = "移动题目类型", httpMethod = "POST")
|
||||
@PostMapping(value = "/move")
|
||||
public Result<ExamQuestionBank> move(@RequestBody ExamQuestionBank examQuestionBank) {
|
||||
@ -235,7 +235,7 @@ public class ExamQuestionBankController {
|
||||
*
|
||||
* @return
|
||||
*/
|
||||
@OperLog(operModul = "题目管理管理", operType = "删除", operDesc = "删除题目管理信息")
|
||||
@OperLog(operModul = "题目管理", operType = "删除", operDesc = "删除题目管理信息")
|
||||
@ApiOperation(value = "删除题目管理信息", notes = "删除题目管理信息", httpMethod = "POST")
|
||||
@ApiImplicitParam(name = "id", value = "题目管理ID", paramType = "body", required = true, dataType = "Integer")
|
||||
@PostMapping(value = "/delete")
|
||||
@ -260,7 +260,7 @@ public class ExamQuestionBankController {
|
||||
*
|
||||
* @return
|
||||
*/
|
||||
@OperLog(operModul = "题目管理管理", operType = "批量删除", operDesc = "批量删除题目管理信息")
|
||||
@OperLog(operModul = "题目管理", operType = "批量删除", operDesc = "批量删除题目管理信息")
|
||||
@ApiOperation(value = "批量删除题目管理信息", notes = "批量删除题目管理信息", httpMethod = "POST")
|
||||
@ApiImplicitParam(name = "ids", value = "题目管理ID字符串", paramType = "body", required = true, dataType = "String")
|
||||
@PostMapping(value = "/deleteBatch")
|
||||
@ -281,7 +281,7 @@ public class ExamQuestionBankController {
|
||||
*
|
||||
* @return
|
||||
*/
|
||||
@OperLog(operModul = "题目管理管理", operType = "查询", operDesc = "通过id查询题目管理信息")
|
||||
@OperLog(operModul = "题目管理", operType = "查询", operDesc = "通过id查询题目管理信息")
|
||||
@ApiOperation(value = "通过id查询题目管理信息", notes = "通过id查询题目管理信息", httpMethod = "POST")
|
||||
@ApiImplicitParam(name = "id", value = "题目管理ID", paramType = "body", required = true, dataType = "Integer")
|
||||
@PostMapping(value = "/queryById")
|
||||
@ -302,7 +302,7 @@ public class ExamQuestionBankController {
|
||||
*
|
||||
* @return
|
||||
*/
|
||||
@OperLog(operModul = "题目管理管理", operType = "查询", operDesc = "通过id查询题目管理信息")
|
||||
@OperLog(operModul = "题目管理", operType = "查询", operDesc = "通过id查询题目管理信息")
|
||||
@ApiOperation(value = "通过id查询题目管理信息", notes = "通过id查询题目管理信息", httpMethod = "POST")
|
||||
@ApiImplicitParam(name = "ids", value = "题目管理ID", paramType = "body", required = true, dataType = "Integer")
|
||||
@PostMapping(value = "/queryByBatchId")
|
||||
|
||||
@ -63,7 +63,7 @@ public class ExamTrainController {
|
||||
*
|
||||
* @return
|
||||
*/
|
||||
@OperLog(operModul = "教育培训信息管理", operType = "分页查询", operDesc = "分页列表查询教育培训信息")
|
||||
@OperLog(operModul = "培训计划管理", operType = "分页查询", operDesc = "分页列表查询教育培训信息")
|
||||
@ApiOperation(value = " 分页列表查询教育培训信息", notes = "分页列表查询教育培训信息", httpMethod = "POST")
|
||||
@ApiImplicitParams({
|
||||
@ApiImplicitParam(name = "pageNo", value = "页数", paramType = "body", required = true, defaultValue = "1", dataType = "Integer"),
|
||||
@ -84,7 +84,7 @@ public class ExamTrainController {
|
||||
* @param examTrain
|
||||
* @return
|
||||
*/
|
||||
@OperLog(operModul = "教育培训信息管理", operType = "列表查询", operDesc = "列表查询教育培训信息")
|
||||
@OperLog(operModul = "培训计划管理", operType = "列表查询", operDesc = "列表查询教育培训信息")
|
||||
@ApiOperation(value = " 列表查询教育培训信息", notes = "列表查询教育培训信息", httpMethod = "POST")
|
||||
@PostMapping(value = "/list")
|
||||
public Result<List<ExamTrain>> queryList(@RequestBody ExamTrain examTrain) {
|
||||
@ -101,7 +101,7 @@ public class ExamTrainController {
|
||||
* @param examTrain
|
||||
* @return
|
||||
*/
|
||||
@OperLog(operModul = "教育培训信息管理", operType = "新增", operDesc = "添加教育培训信息")
|
||||
@OperLog(operModul = "培训计划管理", operType = "新增", operDesc = "添加教育培训信息")
|
||||
@ApiOperation(value = " 添加教育培训信息", notes = "添加教育培训信息", httpMethod = "POST")
|
||||
@PostMapping(value = "/add")
|
||||
public Result<Object> add(@RequestBody ExamTrain examTrain) {
|
||||
@ -115,7 +115,7 @@ public class ExamTrainController {
|
||||
* @param examTrain
|
||||
* @return
|
||||
*/
|
||||
@OperLog(operModul = "教育培训信息管理", operType = "修改", operDesc = "编辑教育培训信息")
|
||||
@OperLog(operModul = "培训计划管理", operType = "修改", operDesc = "编辑教育培训信息")
|
||||
@ApiOperation(value = "编辑教育培训信息", notes = "编辑教育培训信息", httpMethod = "POST")
|
||||
@PostMapping(value = "/edit")
|
||||
public Result<ExamTrain> edit(@RequestBody ExamTrain examTrain) {
|
||||
@ -140,7 +140,7 @@ public class ExamTrainController {
|
||||
*
|
||||
* @return
|
||||
*/
|
||||
@OperLog(operModul = "教育培训信息管理", operType = "删除", operDesc = "删除教育培训信息")
|
||||
@OperLog(operModul = "培训计划管理", operType = "删除", operDesc = "删除教育培训信息")
|
||||
@ApiOperation(value = "删除教育培训信息", notes = "删除教育培训信息", httpMethod = "POST")
|
||||
@ApiImplicitParam(name = "id", value = "教育培训信息ID", paramType = "body", required = true, dataType = "Integer")
|
||||
@PostMapping(value = "/delete")
|
||||
@ -165,7 +165,7 @@ public class ExamTrainController {
|
||||
*
|
||||
* @return
|
||||
*/
|
||||
@OperLog(operModul = "教育培训信息管理", operType = "批量删除", operDesc = "批量删除教育培训信息")
|
||||
@OperLog(operModul = "培训计划管理", operType = "批量删除", operDesc = "批量删除教育培训信息")
|
||||
@ApiOperation(value = "批量删除教育培训信息", notes = "批量删除教育培训信息", httpMethod = "POST")
|
||||
@ApiImplicitParam(name = "ids", value = "教育培训信息ID字符串", paramType = "body", required = true, dataType = "String")
|
||||
@PostMapping(value = "/deleteBatch")
|
||||
@ -186,7 +186,7 @@ public class ExamTrainController {
|
||||
*
|
||||
* @return
|
||||
*/
|
||||
@OperLog(operModul = "教育培训信息管理", operType = "查询", operDesc = "通过id查询教育培训信息")
|
||||
@OperLog(operModul = "培训计划管理", operType = "查询", operDesc = "通过id查询教育培训信息")
|
||||
@ApiOperation(value = "通过id查询教育培训信息", notes = "通过id查询教育培训信息", httpMethod = "POST")
|
||||
@ApiImplicitParam(name = "id", value = "教育培训信息ID", paramType = "body", required = true, dataType = "Integer")
|
||||
@PostMapping(value = "/queryById")
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user