소스 검색

批量更新模版

guwd 5 년 전
부모
커밋
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();
+	}
 }