--- src/main/java/com/takensoft/ai_lms/lms/file/dao/FileDAO.java
+++ src/main/java/com/takensoft/ai_lms/lms/file/dao/FileDAO.java
... | ... | @@ -15,7 +15,6 @@ |
15 | 15 |
*/ |
16 | 16 |
|
17 | 17 |
@Mapper("FileDAO") |
18 |
- |
|
19 | 18 |
public interface FileDAO { |
20 | 19 |
|
21 | 20 |
// 파일 정보 조회 |
... | ... | @@ -27,7 +26,7 @@ |
27 | 26 |
* |
28 | 27 |
* 파일 매니지 아이디 insert |
29 | 28 |
*/ |
30 |
- int fileManageInsert(String fileMngId) throws Exception; |
|
29 |
+ void fileManageInsert(String fileMngId) throws Exception; |
|
31 | 30 |
|
32 | 31 |
/* |
33 | 32 |
* @author : 박민혁 |
... | ... | @@ -35,5 +34,5 @@ |
35 | 34 |
* |
36 | 35 |
* 파일 정보 insert |
37 | 36 |
*/ |
38 |
- int fileInsert(FileVO fileVO) throws Exception; |
|
37 |
+ void fileInsert(FileVO fileVO) throws Exception; |
|
39 | 38 |
} |
--- src/main/resources/mybatis/mapper/lms/files-SQL.xml
+++ src/main/resources/mybatis/mapper/lms/files-SQL.xml
... | ... | @@ -48,11 +48,10 @@ |
48 | 48 |
작성일 : 2024.08.01 |
49 | 49 |
내 용 : 파일 매니지 정보 넣기 |
50 | 50 |
--> |
51 |
- <select id="fileManageInsert" parameterType="String"> |
|
52 |
- INSERT INTO cmmn_file_manage |
|
53 |
- file_mng_id |
|
51 |
+ <insert id="fileManageInsert" parameterType="String"> |
|
52 |
+ INSERT INTO cmmn_file_manage (file_mng_id) |
|
54 | 53 |
VALUES (#{fileMngId}) |
55 |
- </select> |
|
54 |
+ </insert> |
|
56 | 55 |
<!-- |
57 | 56 |
작성자 : 박민혁 |
58 | 57 |
작성일 : 2024.08.01 |
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?