瀏覽代碼

包名修改

xiatian 6 年之前
父節點
當前提交
179b1be41a

+ 5 - 5
examcloud-core-reports-api-provider/src/main/java/cn/com/qmth/examcloud/core/reports/api/provider/ExamCourseDataReportCloudServiceProvider.java

@@ -1,10 +1,5 @@
 package cn.com.qmth.examcloud.core.reports.api.provider;
 
-import org.examcloud.core.reports.api.ExamCourseDataReportCloudService;
-import org.examcloud.core.reports.api.request.DeleteExamCourseDataReportByProjectReq;
-import org.examcloud.core.reports.api.request.SaveExamCourseDataReportListReq;
-import org.examcloud.core.reports.api.response.DeleteExamCourseDataReportByProjectResp;
-import org.examcloud.core.reports.api.response.SaveExamCourseDataReportListResp;
 import org.springframework.beans.factory.annotation.Autowired;
 import org.springframework.web.bind.annotation.PostMapping;
 import org.springframework.web.bind.annotation.RequestBody;
@@ -12,6 +7,11 @@ import org.springframework.web.bind.annotation.RequestMapping;
 import org.springframework.web.bind.annotation.RestController;
 
 import cn.com.qmth.examcloud.commons.exception.StatusException;
+import cn.com.qmth.examcloud.core.reports.api.ExamCourseDataReportCloudService;
+import cn.com.qmth.examcloud.core.reports.api.request.DeleteExamCourseDataReportByProjectReq;
+import cn.com.qmth.examcloud.core.reports.api.request.SaveExamCourseDataReportListReq;
+import cn.com.qmth.examcloud.core.reports.api.response.DeleteExamCourseDataReportByProjectResp;
+import cn.com.qmth.examcloud.core.reports.api.response.SaveExamCourseDataReportListResp;
 import cn.com.qmth.examcloud.core.reports.service.ExamCourseDataReportService;
 import cn.com.qmth.examcloud.web.support.ControllerSupport;
 import io.swagger.annotations.Api;

+ 5 - 5
examcloud-core-reports-api-provider/src/main/java/cn/com/qmth/examcloud/core/reports/api/provider/ExamOrgReportCloudServiceProvider.java

@@ -1,10 +1,5 @@
 package cn.com.qmth.examcloud.core.reports.api.provider;
 
-import org.examcloud.core.reports.api.ExamOrgReportCloudService;
-import org.examcloud.core.reports.api.request.DeleteExamOrgReportByProjectReq;
-import org.examcloud.core.reports.api.request.SaveExamOrgReportListReq;
-import org.examcloud.core.reports.api.response.DeleteExamOrgReportByProjectResp;
-import org.examcloud.core.reports.api.response.SaveExamOrgReportListResp;
 import org.springframework.beans.factory.annotation.Autowired;
 import org.springframework.web.bind.annotation.PostMapping;
 import org.springframework.web.bind.annotation.RequestBody;
@@ -12,6 +7,11 @@ import org.springframework.web.bind.annotation.RequestMapping;
 import org.springframework.web.bind.annotation.RestController;
 
 import cn.com.qmth.examcloud.commons.exception.StatusException;
+import cn.com.qmth.examcloud.core.reports.api.ExamOrgReportCloudService;
+import cn.com.qmth.examcloud.core.reports.api.request.DeleteExamOrgReportByProjectReq;
+import cn.com.qmth.examcloud.core.reports.api.request.SaveExamOrgReportListReq;
+import cn.com.qmth.examcloud.core.reports.api.response.DeleteExamOrgReportByProjectResp;
+import cn.com.qmth.examcloud.core.reports.api.response.SaveExamOrgReportListResp;
 import cn.com.qmth.examcloud.core.reports.service.ExamOrgReportService;
 import cn.com.qmth.examcloud.web.support.ControllerSupport;
 import io.swagger.annotations.Api;

+ 5 - 5
examcloud-core-reports-api-provider/src/main/java/cn/com/qmth/examcloud/core/reports/api/provider/ProjectCloudServiceProvider.java

@@ -1,10 +1,5 @@
 package cn.com.qmth.examcloud.core.reports.api.provider;
 
-import org.examcloud.core.reports.api.ProjectCloudService;
-import org.examcloud.core.reports.api.request.GetProjectInfoBeanReq;
-import org.examcloud.core.reports.api.request.UpdateProjectStatusReq;
-import org.examcloud.core.reports.api.response.GetProjectInfoBeanResp;
-import org.examcloud.core.reports.api.response.UpdateProjectStatusResp;
 import org.springframework.beans.factory.annotation.Autowired;
 import org.springframework.web.bind.annotation.PostMapping;
 import org.springframework.web.bind.annotation.RequestBody;
@@ -12,6 +7,11 @@ import org.springframework.web.bind.annotation.RequestMapping;
 import org.springframework.web.bind.annotation.RestController;
 
 import cn.com.qmth.examcloud.commons.exception.StatusException;
+import cn.com.qmth.examcloud.core.reports.api.ProjectCloudService;
+import cn.com.qmth.examcloud.core.reports.api.request.GetProjectInfoBeanReq;
+import cn.com.qmth.examcloud.core.reports.api.request.UpdateProjectStatusReq;
+import cn.com.qmth.examcloud.core.reports.api.response.GetProjectInfoBeanResp;
+import cn.com.qmth.examcloud.core.reports.api.response.UpdateProjectStatusResp;
 import cn.com.qmth.examcloud.core.reports.service.ProjectService;
 import cn.com.qmth.examcloud.web.support.ControllerSupport;
 import io.swagger.annotations.Api;

+ 1 - 1
examcloud-core-reports-service/src/main/java/cn/com/qmth/examcloud/core/reports/service/ExamCourseDataReportService.java

@@ -2,7 +2,7 @@ package cn.com.qmth.examcloud.core.reports.service;
 
 import java.util.List;
 
-import org.examcloud.core.reports.api.bean.ExamCourseDataReportBean;
+import cn.com.qmth.examcloud.core.reports.api.bean.ExamCourseDataReportBean;
 
 public interface ExamCourseDataReportService {
 

+ 1 - 1
examcloud-core-reports-service/src/main/java/cn/com/qmth/examcloud/core/reports/service/ExamOrgReportService.java

@@ -2,7 +2,7 @@ package cn.com.qmth.examcloud.core.reports.service;
 
 import java.util.List;
 
-import org.examcloud.core.reports.api.bean.ExamOrgReportBean;
+import cn.com.qmth.examcloud.core.reports.api.bean.ExamOrgReportBean;
 
 public interface ExamOrgReportService {
 

+ 3 - 4
examcloud-core-reports-service/src/main/java/cn/com/qmth/examcloud/core/reports/service/ProjectService.java

@@ -1,10 +1,9 @@
 package cn.com.qmth.examcloud.core.reports.service;
 
-import org.examcloud.core.reports.api.bean.ProjectInfoBean;
-import org.examcloud.core.reports.api.request.GetProjectInfoBeanReq;
-import org.examcloud.core.reports.api.request.UpdateProjectStatusReq;
-
 import cn.com.qmth.examcloud.api.commons.exchange.PageInfo;
+import cn.com.qmth.examcloud.core.reports.api.bean.ProjectInfoBean;
+import cn.com.qmth.examcloud.core.reports.api.request.GetProjectInfoBeanReq;
+import cn.com.qmth.examcloud.core.reports.api.request.UpdateProjectStatusReq;
 import cn.com.qmth.examcloud.core.reports.base.bean.AddProjectReq;
 import cn.com.qmth.examcloud.core.reports.base.bean.ProjectBean;
 import cn.com.qmth.examcloud.core.reports.base.bean.QueryProjectPageReq;

+ 1 - 1
examcloud-core-reports-service/src/main/java/cn/com/qmth/examcloud/core/reports/service/impl/ExamCourseDataReportServiceImpl.java

@@ -4,12 +4,12 @@ import java.util.ArrayList;
 import java.util.List;
 
 import org.apache.commons.lang3.StringUtils;
-import org.examcloud.core.reports.api.bean.ExamCourseDataReportBean;
 import org.springframework.beans.BeanUtils;
 import org.springframework.beans.factory.annotation.Autowired;
 import org.springframework.stereotype.Service;
 import org.springframework.transaction.annotation.Transactional;
 
+import cn.com.qmth.examcloud.core.reports.api.bean.ExamCourseDataReportBean;
 import cn.com.qmth.examcloud.core.reports.dao.ExamCourseDataReportRepo;
 import cn.com.qmth.examcloud.core.reports.dao.entity.ExamCourseDataReportEntity;
 import cn.com.qmth.examcloud.core.reports.service.ExamCourseDataReportService;

+ 1 - 1
examcloud-core-reports-service/src/main/java/cn/com/qmth/examcloud/core/reports/service/impl/ExamOrgReportServiceImpl.java

@@ -4,12 +4,12 @@ import java.util.ArrayList;
 import java.util.List;
 
 import org.apache.commons.lang3.StringUtils;
-import org.examcloud.core.reports.api.bean.ExamOrgReportBean;
 import org.springframework.beans.BeanUtils;
 import org.springframework.beans.factory.annotation.Autowired;
 import org.springframework.stereotype.Service;
 import org.springframework.transaction.annotation.Transactional;
 
+import cn.com.qmth.examcloud.core.reports.api.bean.ExamOrgReportBean;
 import cn.com.qmth.examcloud.core.reports.dao.ExamOrgReportRepo;
 import cn.com.qmth.examcloud.core.reports.dao.entity.ExamOrgReportEntity;
 import cn.com.qmth.examcloud.core.reports.service.ExamOrgReportService;

+ 3 - 3
examcloud-core-reports-service/src/main/java/cn/com/qmth/examcloud/core/reports/service/impl/ProjectServiceImpl.java

@@ -8,9 +8,6 @@ import java.util.stream.Collectors;
 import javax.persistence.criteria.Predicate;
 
 import org.apache.commons.lang3.StringUtils;
-import org.examcloud.core.reports.api.bean.ProjectInfoBean;
-import org.examcloud.core.reports.api.request.GetProjectInfoBeanReq;
-import org.examcloud.core.reports.api.request.UpdateProjectStatusReq;
 import org.springframework.beans.BeanUtils;
 import org.springframework.beans.factory.annotation.Autowired;
 import org.springframework.data.domain.Page;
@@ -25,6 +22,9 @@ import com.google.common.collect.Lists;
 
 import cn.com.qmth.examcloud.api.commons.exchange.PageInfo;
 import cn.com.qmth.examcloud.commons.exception.StatusException;
+import cn.com.qmth.examcloud.core.reports.api.bean.ProjectInfoBean;
+import cn.com.qmth.examcloud.core.reports.api.request.GetProjectInfoBeanReq;
+import cn.com.qmth.examcloud.core.reports.api.request.UpdateProjectStatusReq;
 import cn.com.qmth.examcloud.core.reports.base.bean.AddProjectReq;
 import cn.com.qmth.examcloud.core.reports.base.bean.ProjectBean;
 import cn.com.qmth.examcloud.core.reports.base.bean.QueryProjectPageReq;