Commit 82fad1d4 authored by wzp's avatar wzp

修改bug

parent 699b0942
...@@ -206,6 +206,10 @@ public class AuditController extends BaseController { ...@@ -206,6 +206,10 @@ public class AuditController extends BaseController {
@ApiOperation(value = "获取禁用审核详情", notes = "获取禁用审核详情") @ApiOperation(value = "获取禁用审核详情", notes = "获取禁用审核详情")
@GetMapping("/getById") @GetMapping("/getById")
@RequiresPermissions("/audit/getById") @RequiresPermissions("/audit/getById")
@ApiImplicitParams(value = {
@ApiImplicitParam(name = "id", value = "id", paramType = "query", dataType = "String"),
@ApiImplicitParam(name = "type", value = "视频内容:VIDEO_CONTENT,展板内容:EXHIBITION_BOARD,学习内容:LEARNING_CONTENT", paramType = "query", dataType = "String", allowableValues = "VIDEO_CONTENT,EXHIBITION_BOARD,LEARNING_CONTENT,ACCOUNT", required = true)
})
@MethodLog(operModule = OperModule.CHECKVIDEO,operType = OperType.DETAILS) @MethodLog(operModule = OperModule.CHECKVIDEO,operType = OperType.DETAILS)
public Map<String, Object> getById(String id, String type) { public Map<String, Object> getById(String id, String type) {
HashMap<String, Object> resultMap = new HashMap<>(); HashMap<String, Object> resultMap = new HashMap<>();
......
...@@ -70,6 +70,7 @@ public class ExhibitionBoardController extends BaseController { ...@@ -70,6 +70,7 @@ public class ExhibitionBoardController extends BaseController {
} }
exhibitionBoard.setAuditStatus(AuditStatusEnum.TBC.name()); exhibitionBoard.setAuditStatus(AuditStatusEnum.TBC.name());
exhibitionBoard.setPublished(false); exhibitionBoard.setPublished(false);
exhibitionBoard.setDeleted(false);
// 保存业务节点信息 // 保存业务节点信息
boolean result = exhibitionBoardService.save(exhibitionBoard); boolean result = exhibitionBoardService.save(exhibitionBoard);
// 返回操作结果 // 返回操作结果
......
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