guwd 5 лет назад
Родитель
Сommit
bb41e14084
1 измененных файлов с 11 добавлено и 0 удалено
  1. 11 0
      src/main/java/net/mingsoft/cms/action/CategoryAction.java

+ 11 - 0
src/main/java/net/mingsoft/cms/action/CategoryAction.java

@@ -292,4 +292,15 @@ public class CategoryAction extends BaseAction {
 		return ResultData.build().success();
 	}
 
+	@ApiOperation(value = "批量更新模版")
+	@GetMapping("/updateTemplate")
+	@ResponseBody
+	public ResultData updateTemplate(@ModelAttribute @ApiIgnore CategoryEntity category, HttpServletResponse response, HttpServletRequest request, @ApiIgnore ModelMap model){
+
+	 	//父栏目是列表
+
+		//父栏目是封面
+
+		return ResultData.build().success();
+	}
 }