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
... | ... | @@ -25,31 +25,31 @@ |
25 | 25 |
|
26 | 26 |
|
27 | 27 |
@PostMapping(path = "/photoMngList.json") |
28 |
- public ResponseEntity<?> unitList() throws Exception { |
|
28 |
+ public ResponseEntity<?> photoMngList() throws Exception { |
|
29 | 29 |
List<PhotoMngVO> result = photoMngService.photoMngList(); |
30 | 30 |
return new ResponseEntity<>(result, HttpStatus.OK); |
31 | 31 |
} |
32 | 32 |
|
33 | 33 |
@PostMapping(path = "/insertPhotoMng.json") |
34 |
- public ResponseEntity<?> insertUnit(@RequestBody PhotoMngVO photoMngVO) throws Exception { |
|
34 |
+ public ResponseEntity<?> insertPhotoMng(@RequestBody PhotoMngVO photoMngVO) throws Exception { |
|
35 | 35 |
int result = photoMngService.insertPhotoMng(photoMngVO); |
36 | 36 |
return new ResponseEntity<>(result, HttpStatus.OK); |
37 | 37 |
} |
38 | 38 |
|
39 | 39 |
@PostMapping(path = "/updatePhotoMng.json") |
40 |
- public ResponseEntity<?> updateUnit(@RequestBody PhotoMngVO photoMngVO) throws Exception { |
|
40 |
+ public ResponseEntity<?> updatePhotoMng(@RequestBody PhotoMngVO photoMngVO) throws Exception { |
|
41 | 41 |
int result = photoMngService.updatePhotoMng(photoMngVO); |
42 | 42 |
return new ResponseEntity<>(result, HttpStatus.OK); |
43 | 43 |
} |
44 | 44 |
|
45 | 45 |
@PostMapping(path = "/deletePhotoMng.json") |
46 |
- public ResponseEntity<?> deleteUnit(@RequestBody PhotoMngVO photoMngVO) throws Exception { |
|
46 |
+ public ResponseEntity<?> deletePhotoMng(@RequestBody PhotoMngVO photoMngVO) throws Exception { |
|
47 | 47 |
int result = photoMngService.deletePhotoMng(photoMngVO); |
48 | 48 |
return new ResponseEntity<>(result, HttpStatus.OK); |
49 | 49 |
} |
50 | 50 |
|
51 | 51 |
@PostMapping(path = "/photoMngDetail.json") |
52 |
- public ResponseEntity<?> unitDetail(@RequestBody PhotoMngVO photoMngVO) throws Exception { |
|
52 |
+ public ResponseEntity<?> photoMngDetail(@RequestBody PhotoMngVO photoMngVO) throws Exception { |
|
53 | 53 |
List<PhotoMngVO> result = photoMngService.photoMngDetail(photoMngVO); |
54 | 54 |
return new ResponseEntity<>(result, HttpStatus.OK); |
55 | 55 |
} |
Add a comment
Delete comment
Once you delete this comment, you won't be able to recover it. Are you sure you want to delete this comment?