exam模块添加
This commit is contained in:
parent
aada6af8e7
commit
bd84890abe
|
|
@ -49,7 +49,6 @@ public class ExamQuestionCategoryController extends BaseController
|
|||
@ResponseBody
|
||||
public TableDataInfo list(ExamQuestionCategory examQuestionCategory)
|
||||
{
|
||||
startPage();
|
||||
List<ExamQuestionCategory> list = examQuestionCategoryService.selectExamQuestionCategoryList(examQuestionCategory);
|
||||
return getDataTable(list);
|
||||
}
|
||||
|
|
|
|||
|
|
@ -49,7 +49,6 @@ public class ExamQuestionCommentController extends BaseController
|
|||
@ResponseBody
|
||||
public TableDataInfo list(ExamQuestionComment examQuestionComment)
|
||||
{
|
||||
startPage();
|
||||
List<ExamQuestionComment> list = examQuestionCommentService.selectExamQuestionCommentList(examQuestionComment);
|
||||
return getDataTable(list);
|
||||
}
|
||||
|
|
|
|||
|
|
@ -49,7 +49,6 @@ public class ExamQuestionController extends BaseController
|
|||
@ResponseBody
|
||||
public TableDataInfo list(ExamQuestion examQuestion)
|
||||
{
|
||||
startPage();
|
||||
List<ExamQuestion> list = examQuestionService.selectExamQuestionList(examQuestion);
|
||||
return getDataTable(list);
|
||||
}
|
||||
|
|
|
|||
|
|
@ -49,7 +49,6 @@ public class ExamQuestionItemController extends BaseController
|
|||
@ResponseBody
|
||||
public TableDataInfo list(ExamQuestionItem examQuestionItem)
|
||||
{
|
||||
startPage();
|
||||
List<ExamQuestionItem> list = examQuestionItemService.selectExamQuestionItemList(examQuestionItem);
|
||||
return getDataTable(list);
|
||||
}
|
||||
|
|
|
|||
|
|
@ -49,7 +49,6 @@ public class ${className}Controller extends BaseController
|
|||
@ResponseBody
|
||||
public TableDataInfo list(${className} ${classname})
|
||||
{
|
||||
startPage();
|
||||
List<${className}> list = ${classname}Service.select${className}List(${classname});
|
||||
return getDataTable(list);
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in New Issue