zouxuan 5 éve
szülő
commit
7a0cb438b4

+ 4 - 0
edu-user/edu-user-server/pom.xml

@@ -84,5 +84,9 @@
             <groupId>com.keao.edu</groupId>
             <artifactId>edu-datasource</artifactId>
         </dependency>
+        <dependency>
+            <groupId>com.keao.edu</groupId>
+            <artifactId>edu-user-client-api</artifactId>
+        </dependency>
     </dependencies>
 </project>

+ 1 - 1
edu-user/edu-user-server/src/main/java/com/keao/edu/user/dao/ExamRoomDao.java

@@ -2,7 +2,7 @@ package com.keao.edu.user.dao;
 
 
 import com.keao.edu.common.dal.BaseDAO;
-import com.keao.edu.user.entity.ExamRoom;
+import com.keao.edu.user.api.entity.ExamRoom;
 
 public interface ExamRoomDao extends BaseDAO<Long, ExamRoom> {
 

+ 1 - 1
edu-user/edu-user-server/src/main/java/com/keao/edu/user/service/ExamRoomService.java

@@ -2,7 +2,7 @@ package com.keao.edu.user.service;
 
 
 import com.keao.edu.common.service.BaseService;
-import com.keao.edu.user.entity.ExamRoom;
+import com.keao.edu.user.api.entity.ExamRoom;
 
 public interface ExamRoomService extends BaseService<Long, ExamRoom> {
 

+ 1 - 1
edu-user/edu-user-server/src/main/java/com/keao/edu/user/service/impl/ExamRoomServiceImpl.java

@@ -3,8 +3,8 @@ package com.keao.edu.user.service.impl;
 
 import com.keao.edu.common.dal.BaseDAO;
 import com.keao.edu.common.service.impl.BaseServiceImpl;
+import com.keao.edu.user.api.entity.ExamRoom;
 import com.keao.edu.user.dao.ExamRoomDao;
-import com.keao.edu.user.entity.ExamRoom;
 import com.keao.edu.user.service.ExamRoomService;
 import org.springframework.beans.factory.annotation.Autowired;
 import org.springframework.stereotype.Service;