박민혁 박민혁 08-01
240801 박민혁 파일 업로드 기능 수정
@8b1c988fe5b5f02860232f1e2f6132090e27ecc4
src/main/java/com/takensoft/ai_lms/lms/file/dao/FileDAO.java
--- 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 @@
  */
 
 @Mapper("FileDAO")
-
 public interface FileDAO {
 
     // 파일 정보 조회
@@ -27,7 +26,7 @@
      *
      * 파일 매니지 아이디 insert
      */
-    int fileManageInsert(String fileMngId) throws Exception;
+    void fileManageInsert(String fileMngId) throws Exception;
 
     /*
      * @author  : 박민혁
@@ -35,5 +34,5 @@
      *
      * 파일 정보 insert
      */
-    int fileInsert(FileVO fileVO) throws Exception;
+    void fileInsert(FileVO fileVO) throws Exception;
 }
src/main/resources/mybatis/mapper/lms/files-SQL.xml
--- src/main/resources/mybatis/mapper/lms/files-SQL.xml
+++ src/main/resources/mybatis/mapper/lms/files-SQL.xml
@@ -48,11 +48,10 @@
         작성일 : 2024.08.01
         내 용 : 파일 매니지 정보 넣기
     -->
-    <select id="fileManageInsert"  parameterType="String">
-        INSERT INTO cmmn_file_manage
-            file_mng_id
+    <insert id="fileManageInsert" parameterType="String">
+        INSERT INTO cmmn_file_manage (file_mng_id)
         VALUES (#{fileMngId})
-    </select>
+    </insert>
     <!--
         작성자 : 박민혁
         작성일 : 2024.08.01
Add a comment
List