Commit 4d03815e authored by liqin's avatar liqin 💬

bug fixed

parent 326b892b
...@@ -303,7 +303,9 @@ public class LearningContentController extends BaseController { ...@@ -303,7 +303,9 @@ public class LearningContentController extends BaseController {
* @param targetId 目标实体ID * @param targetId 目标实体ID
* @return Void * @return Void
*/ */
@PutMapping("/sort") @ApiOperation(value = "学习内容排序")
@PutMapping(value = "/sort")
@RequiresPermissions("learning:content:sort")
public Map<String,Object> updateSortorder(String sourceId, String targetId) { public Map<String,Object> updateSortorder(String sourceId, String targetId) {
String moveType; String moveType;
LearningContent theSource = this.learningContentService.getById(sourceId); LearningContent theSource = this.learningContentService.getById(sourceId);
......
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