From 7bfc9733c93691c848ac0bb9828db699e91ab75c Mon Sep 17 00:00:00 2001 From: wyu <kknd09321@nate.com> Date: 화, 09 11월 2021 11:36:31 +0900 Subject: [PATCH] ISP, Hoting 백엔드 수정 --- src/main/java/kr/wisestone/owl/web/controller/HostingFieldController.java | 12 ++++++------ 1 files changed, 6 insertions(+), 6 deletions(-) diff --git a/src/main/java/kr/wisestone/owl/web/controller/HostingFieldController.java b/src/main/java/kr/wisestone/owl/web/controller/HostingFieldController.java index 7b5302d..b903c38 100644 --- a/src/main/java/kr/wisestone/owl/web/controller/HostingFieldController.java +++ b/src/main/java/kr/wisestone/owl/web/controller/HostingFieldController.java @@ -26,7 +26,7 @@ private HostingFieldService HostingFieldService; // �뾽泥� �깮�꽦 - @RequestMapping(value = "/hosting/add", method = RequestMethod.POST) + @RequestMapping(value = "/hostingField/add", method = RequestMethod.POST) public @ResponseBody Map<String, Object> add(@RequestBody Map<String, Map<String, Object>> params) { @@ -38,7 +38,7 @@ } // �뾽泥� 議고쉶 - @RequestMapping(value = "/hosting/find", method = RequestMethod.POST, produces = MediaType.APPLICATION_JSON_VALUE) + @RequestMapping(value = "/hostingField/find", method = RequestMethod.POST, produces = MediaType.APPLICATION_JSON_VALUE) public @ResponseBody Map<String, Object> find(@RequestBody Map<String, Map<String, Object>> params) { @@ -51,7 +51,7 @@ } // �뾽泥� �긽�꽭 議고쉶 - @RequestMapping(value = "/hosting/detail", produces = MediaType.APPLICATION_JSON_VALUE) + @RequestMapping(value = "/hostingField/detail", produces = MediaType.APPLICATION_JSON_VALUE) public @ResponseBody Map<String, Object> detail(@RequestBody Map<String, Map<String, Object>> params) { @@ -62,7 +62,7 @@ } // �뾽泥� �닔�젙 - @RequestMapping(value = "/hosting/modify", produces = MediaType.APPLICATION_JSON_VALUE) + @RequestMapping(value = "/hostingField/modify", produces = MediaType.APPLICATION_JSON_VALUE) public @ResponseBody Map<String, Object> modify(@RequestBody Map<String, Map<String, Object>> params) { @@ -74,7 +74,7 @@ } // �뾽泥� �궘�젣 - @RequestMapping(value = "/hosting/remove", method = RequestMethod.POST, produces = MediaType.APPLICATION_JSON_VALUE) + @RequestMapping(value = "/hostingField/remove", method = RequestMethod.POST, produces = MediaType.APPLICATION_JSON_VALUE) public @ResponseBody Map<String, Object> remove(@RequestBody Map<String, Map<String, Object>> params) { @@ -88,7 +88,7 @@ // �뾽泥� �뿊�� �떎�슫濡쒕뱶 - @RequestMapping(value = "/hosting/downloadExcel", method = RequestMethod.POST) + @RequestMapping(value = "/hostingField/downloadExcel", method = RequestMethod.POST) public ModelAndView downloadExcel(HttpServletRequest request, Model model) { return this.HostingFieldService.downloadExcel(request, model); } -- Gitblit v1.8.0