Commit 2b7128cd authored by liqin's avatar liqin 💬

bug fixed

parent 1ac99e9c
......@@ -343,7 +343,7 @@ public class ChinaMobileRestApiController extends BaseController {
@ApiImplicitParams(value = {
@ApiImplicitParam(name = "_index", value = "分页起始偏移量", paramType = "query", dataType = "Integer"),
@ApiImplicitParam(name = "_size", value = "返回条数", paramType = "query", dataType = "Integer"),
@ApiImplicitParam(name = "learningContentId", value = "学习内容ID", paramType = "query", dataType = "String", required = false)
@ApiImplicitParam(name = "learningContentId", value = "学习内容ID", paramType = "query", dataType = "String")
})
@PostMapping("/exhibitionBoard/getPage")
@RequiresPermissions("exhibition:board:page")
......@@ -470,6 +470,11 @@ public class ChinaMobileRestApiController extends BaseController {
queryWrapper.select(
LearningContent::getId,
LearningContent::getName,
LearningContent::getCover,
LearningContent::getApplicableScope,
LearningContent::getSortorder,
LearningContent::getPublished,
LearningContent::getDeleted,
LearningContent::getAuditStatus,
LearningContent::getCreateTime,
LearningContent::getUpdateTime);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment