guntaek 07-29
240729 김건택 사진첩 변수명 수정
@4a5cb0ae28b4c5cc53f4c2bd16a3e17b3988c2bb
src/main/java/com/takensoft/ai_lms/lms/photoMng/web/PhotoMngController.java
--- src/main/java/com/takensoft/ai_lms/lms/photoMng/web/PhotoMngController.java
+++ src/main/java/com/takensoft/ai_lms/lms/photoMng/web/PhotoMngController.java
@@ -25,31 +25,31 @@
 
 
     @PostMapping(path = "/photoMngList.json")
-    public ResponseEntity<?> unitList() throws Exception {
+    public ResponseEntity<?> photoMngList() throws Exception {
         List<PhotoMngVO> result = photoMngService.photoMngList();
         return new ResponseEntity<>(result, HttpStatus.OK);
     }
 
     @PostMapping(path = "/insertPhotoMng.json")
-    public ResponseEntity<?> insertUnit(@RequestBody PhotoMngVO photoMngVO) throws Exception {
+    public ResponseEntity<?> insertPhotoMng(@RequestBody PhotoMngVO photoMngVO) throws Exception {
         int result = photoMngService.insertPhotoMng(photoMngVO);
         return new ResponseEntity<>(result, HttpStatus.OK);
     }
 
     @PostMapping(path = "/updatePhotoMng.json")
-    public ResponseEntity<?> updateUnit(@RequestBody PhotoMngVO photoMngVO) throws Exception {
+    public ResponseEntity<?> updatePhotoMng(@RequestBody PhotoMngVO photoMngVO) throws Exception {
         int result = photoMngService.updatePhotoMng(photoMngVO);
         return new ResponseEntity<>(result, HttpStatus.OK);
     }
 
     @PostMapping(path = "/deletePhotoMng.json")
-    public ResponseEntity<?> deleteUnit(@RequestBody PhotoMngVO photoMngVO) throws Exception {
+    public ResponseEntity<?> deletePhotoMng(@RequestBody PhotoMngVO photoMngVO) throws Exception {
         int result = photoMngService.deletePhotoMng(photoMngVO);
         return new ResponseEntity<>(result, HttpStatus.OK);
     }
 
     @PostMapping(path = "/photoMngDetail.json")
-    public ResponseEntity<?> unitDetail(@RequestBody PhotoMngVO photoMngVO) throws Exception {
+    public ResponseEntity<?> photoMngDetail(@RequestBody PhotoMngVO photoMngVO) throws Exception {
         List<PhotoMngVO> result = photoMngService.photoMngDetail(photoMngVO);
         return new ResponseEntity<>(result, HttpStatus.OK);
     }
Add a comment
List