xiatian 6 лет назад
Родитель
Сommit
aef240134d

+ 0 - 22
examcloud-core-reports-api-client/src/main/java/org/examcloud/core/reports/api/client/CourseDataReportCloudServiceClient.java

@@ -1,22 +0,0 @@
-package org.examcloud.core.reports.api.client;
-
-import org.examcloud.core.reports.api.CourseDataReportCloudService;
-import org.examcloud.core.reports.api.request.SaveCourseDataReportListReq;
-import org.examcloud.core.reports.api.response.SaveCourseDataReportListResp;
-import org.springframework.stereotype.Service;
-
-@Service
-public class CourseDataReportCloudServiceClient extends AbstractCloudClientSupport implements CourseDataReportCloudService {
-
-
-	/**
-	 * 
-	 */
-	private static final long serialVersionUID = -1516387351356638145L;
-
-	@Override
-	public SaveCourseDataReportListResp saveCourseDataReportList(SaveCourseDataReportListReq req) {
-		return post("courseDataReport/saveList", req, SaveCourseDataReportListResp.class);
-	}
-
-}

+ 0 - 22
examcloud-core-reports-api-client/src/main/java/org/examcloud/core/reports/api/client/ExamDataReportCloudServiceClient.java

@@ -1,22 +0,0 @@
-package org.examcloud.core.reports.api.client;
-
-import org.examcloud.core.reports.api.ExamDataReportCloudService;
-import org.examcloud.core.reports.api.request.SaveExamDataReportListReq;
-import org.examcloud.core.reports.api.response.SaveExamDataReportListResp;
-import org.springframework.stereotype.Service;
-
-@Service
-public class ExamDataReportCloudServiceClient extends AbstractCloudClientSupport implements ExamDataReportCloudService {
-
-
-	/**
-	 * 
-	 */
-	private static final long serialVersionUID = 3937222097644204731L;
-
-	@Override
-	public SaveExamDataReportListResp saveExamDataReportList(SaveExamDataReportListReq req) {
-		return post("examDataReport/saveList", req, SaveExamDataReportListResp.class);
-	}
-
-}

+ 0 - 10
examcloud-core-reports-api/src/main/java/org/examcloud/core/reports/api/CourseDataReportCloudService.java

@@ -1,10 +0,0 @@
-package org.examcloud.core.reports.api;
-
-import org.examcloud.core.reports.api.request.SaveCourseDataReportListReq;
-import org.examcloud.core.reports.api.response.SaveCourseDataReportListResp;
-
-import cn.com.qmth.examcloud.api.commons.CloudService;
-
-public interface CourseDataReportCloudService extends CloudService {
-	SaveCourseDataReportListResp saveCourseDataReportList(SaveCourseDataReportListReq req);
-}

+ 0 - 10
examcloud-core-reports-api/src/main/java/org/examcloud/core/reports/api/ExamDataReportCloudService.java

@@ -1,10 +0,0 @@
-package org.examcloud.core.reports.api;
-
-import org.examcloud.core.reports.api.request.SaveExamDataReportListReq;
-import org.examcloud.core.reports.api.response.SaveExamDataReportListResp;
-
-import cn.com.qmth.examcloud.api.commons.CloudService;
-
-public interface ExamDataReportCloudService extends CloudService {
-	SaveExamDataReportListResp saveExamDataReportList(SaveExamDataReportListReq req);
-}

+ 0 - 149
examcloud-core-reports-api/src/main/java/org/examcloud/core/reports/api/bean/CourseDataReportBean.java

@@ -1,149 +0,0 @@
-package org.examcloud.core.reports.api.bean;
-
-import java.util.List;
-
-import cn.com.qmth.examcloud.api.commons.exchange.JsonSerializable;
-
-public class CourseDataReportBean implements JsonSerializable {
-
-	/**
-	 * 
-	 */
-	private static final long serialVersionUID = -6578791310338848714L;
-    private Long projectId;
-	//rootOrgId
-    private Long rootOrgId;
-    //课程id
-    private Long courseId;
-    //课程名称
-    private String courseName;
-    //课程code
-    private String courseCode;
-    //满分
-    private Double totalScore;
-    //最高分
-    private Double maxScore;
-    //最低分
-    private Double minScore;
-    //平均分
-    private Double avgScore;
-    //标准差
-    private Double std;
-    //平均调卷难度
-    private Double avgDifficultyDegree;
-    //差异系数
-    private Double cdi;
-    //考试人数
-    private Long participantCount;
-    //满分人数
-    private Long fullCount;
-    //零分人数
-    private Long zeroCount;
-    //及格人数
-    private Long passCount;
-    //分段人数数据
-	private List<Long> partitionData;
-	public Long getProjectId() {
-		return projectId;
-	}
-	public void setProjectId(Long projectId) {
-		this.projectId = projectId;
-	}
-	public Long getRootOrgId() {
-		return rootOrgId;
-	}
-	public void setRootOrgId(Long rootOrgId) {
-		this.rootOrgId = rootOrgId;
-	}
-	public Long getCourseId() {
-		return courseId;
-	}
-	public void setCourseId(Long courseId) {
-		this.courseId = courseId;
-	}
-	public String getCourseName() {
-		return courseName;
-	}
-	public void setCourseName(String courseName) {
-		this.courseName = courseName;
-	}
-	public String getCourseCode() {
-		return courseCode;
-	}
-	public void setCourseCode(String courseCode) {
-		this.courseCode = courseCode;
-	}
-	public Double getTotalScore() {
-		return totalScore;
-	}
-	public void setTotalScore(Double totalScore) {
-		this.totalScore = totalScore;
-	}
-	public Double getMaxScore() {
-		return maxScore;
-	}
-	public void setMaxScore(Double maxScore) {
-		this.maxScore = maxScore;
-	}
-	public Double getMinScore() {
-		return minScore;
-	}
-	public void setMinScore(Double minScore) {
-		this.minScore = minScore;
-	}
-	public Double getAvgScore() {
-		return avgScore;
-	}
-	public void setAvgScore(Double avgScore) {
-		this.avgScore = avgScore;
-	}
-	public Double getStd() {
-		return std;
-	}
-	public void setStd(Double std) {
-		this.std = std;
-	}
-	public Double getAvgDifficultyDegree() {
-		return avgDifficultyDegree;
-	}
-	public void setAvgDifficultyDegree(Double avgDifficultyDegree) {
-		this.avgDifficultyDegree = avgDifficultyDegree;
-	}
-	public Double getCdi() {
-		return cdi;
-	}
-	public void setCdi(Double cdi) {
-		this.cdi = cdi;
-	}
-	public Long getParticipantCount() {
-		return participantCount;
-	}
-	public void setParticipantCount(Long participantCount) {
-		this.participantCount = participantCount;
-	}
-	public Long getFullCount() {
-		return fullCount;
-	}
-	public void setFullCount(Long fullCount) {
-		this.fullCount = fullCount;
-	}
-	public Long getZeroCount() {
-		return zeroCount;
-	}
-	public void setZeroCount(Long zeroCount) {
-		this.zeroCount = zeroCount;
-	}
-	public Long getPassCount() {
-		return passCount;
-	}
-	public void setPassCount(Long passCount) {
-		this.passCount = passCount;
-	}
-	public List<Long> getPartitionData() {
-		return partitionData;
-	}
-	public void setPartitionData(List<Long> partitionData) {
-		this.partitionData = partitionData;
-	}
-	
-}

+ 0 - 148
examcloud-core-reports-api/src/main/java/org/examcloud/core/reports/api/bean/ExamDataReportBean.java

@@ -1,148 +0,0 @@
-package org.examcloud.core.reports.api.bean;
-
-import java.util.List;
-
-import cn.com.qmth.examcloud.api.commons.exchange.JsonSerializable;
-
-public class ExamDataReportBean implements JsonSerializable {
-    /**
-	 * 
-	 */
-	private static final long serialVersionUID = -7113692288876885053L;
-	private Long projectId;
-	//rootOrgId
-    private Long rootOrgId;
-    //考试id
-    private Long examId;
-    //考试名称
-    private String examName;
-    //考试code
-    private String examCode;
-    //满分
-    private Double totalScore;
-    //最高分
-    private Double maxScore;
-    //最低分
-    private Double minScore;
-    //平均分
-    private Double avgScore;
-    //标准差
-    private Double std;
-    //平均调卷难度
-    private Double avgDifficultyDegree;
-    //差异系数
-    private Double cdi;
-    //考试人数
-    private Long participantCount;
-    //满分人数
-    private Long fullCount;
-    //零分人数
-    private Long zeroCount;
-    //及格人数
-    private Long passCount;
-    //分段人数数据
-	private List<Long> partitionData;
-	public Long getProjectId() {
-		return projectId;
-	}
-	public void setProjectId(Long projectId) {
-		this.projectId = projectId;
-	}
-	public Long getRootOrgId() {
-		return rootOrgId;
-	}
-	public void setRootOrgId(Long rootOrgId) {
-		this.rootOrgId = rootOrgId;
-	}
-	public Double getTotalScore() {
-		return totalScore;
-	}
-	public void setTotalScore(Double totalScore) {
-		this.totalScore = totalScore;
-	}
-	public Double getMaxScore() {
-		return maxScore;
-	}
-	public void setMaxScore(Double maxScore) {
-		this.maxScore = maxScore;
-	}
-	public Double getMinScore() {
-		return minScore;
-	}
-	public void setMinScore(Double minScore) {
-		this.minScore = minScore;
-	}
-	public Double getAvgScore() {
-		return avgScore;
-	}
-	public void setAvgScore(Double avgScore) {
-		this.avgScore = avgScore;
-	}
-	public Double getStd() {
-		return std;
-	}
-	public void setStd(Double std) {
-		this.std = std;
-	}
-	public Double getAvgDifficultyDegree() {
-		return avgDifficultyDegree;
-	}
-	public void setAvgDifficultyDegree(Double avgDifficultyDegree) {
-		this.avgDifficultyDegree = avgDifficultyDegree;
-	}
-	public Double getCdi() {
-		return cdi;
-	}
-	public void setCdi(Double cdi) {
-		this.cdi = cdi;
-	}
-	public Long getParticipantCount() {
-		return participantCount;
-	}
-	public void setParticipantCount(Long participantCount) {
-		this.participantCount = participantCount;
-	}
-	public Long getFullCount() {
-		return fullCount;
-	}
-	public void setFullCount(Long fullCount) {
-		this.fullCount = fullCount;
-	}
-	public Long getZeroCount() {
-		return zeroCount;
-	}
-	public void setZeroCount(Long zeroCount) {
-		this.zeroCount = zeroCount;
-	}
-	public Long getPassCount() {
-		return passCount;
-	}
-	public void setPassCount(Long passCount) {
-		this.passCount = passCount;
-	}
-	public List<Long> getPartitionData() {
-		return partitionData;
-	}
-	public void setPartitionData(List<Long> partitionData) {
-		this.partitionData = partitionData;
-	}
-	public Long getExamId() {
-		return examId;
-	}
-	public void setExamId(Long examId) {
-		this.examId = examId;
-	}
-	public String getExamName() {
-		return examName;
-	}
-	public void setExamName(String examName) {
-		this.examName = examName;
-	}
-	public String getExamCode() {
-		return examCode;
-	}
-	public void setExamCode(String examCode) {
-		this.examCode = examCode;
-	}
-	
-}

+ 0 - 22
examcloud-core-reports-api/src/main/java/org/examcloud/core/reports/api/request/SaveCourseDataReportListReq.java

@@ -1,22 +0,0 @@
-package org.examcloud.core.reports.api.request;
-
-import java.util.List;
-
-import org.examcloud.core.reports.api.bean.CourseDataReportBean;
-
-import cn.com.qmth.examcloud.api.commons.exchange.BaseRequest;
-
-public class SaveCourseDataReportListReq extends BaseRequest {
-	/**
-	 * 
-	 */
-	private static final long serialVersionUID = 756882521094918113L;
-	private List<CourseDataReportBean> beans;
-	public List<CourseDataReportBean> getBeans() {
-		return beans;
-	}
-	public void setBeans(List<CourseDataReportBean> beans) {
-		this.beans = beans;
-	}
-
-}

+ 0 - 22
examcloud-core-reports-api/src/main/java/org/examcloud/core/reports/api/request/SaveExamDataReportListReq.java

@@ -1,22 +0,0 @@
-package org.examcloud.core.reports.api.request;
-
-import java.util.List;
-
-import org.examcloud.core.reports.api.bean.ExamDataReportBean;
-
-import cn.com.qmth.examcloud.api.commons.exchange.BaseRequest;
-
-public class SaveExamDataReportListReq extends BaseRequest {
-	/**
-	 * 
-	 */
-	private static final long serialVersionUID = 2367459231239575816L;
-	private List<ExamDataReportBean> beans;
-	public List<ExamDataReportBean> getBeans() {
-		return beans;
-	}
-	public void setBeans(List<ExamDataReportBean> beans) {
-		this.beans = beans;
-	}
-
-}

+ 0 - 12
examcloud-core-reports-api/src/main/java/org/examcloud/core/reports/api/response/SaveCourseDataReportListResp.java

@@ -1,12 +0,0 @@
-package org.examcloud.core.reports.api.response;
-
-import cn.com.qmth.examcloud.api.commons.exchange.BaseResponse;
-
-public class SaveCourseDataReportListResp extends BaseResponse {
-
-	/**
-	 * 
-	 */
-	private static final long serialVersionUID = -3742134319699756217L;
-
-}

+ 0 - 12
examcloud-core-reports-api/src/main/java/org/examcloud/core/reports/api/response/SaveExamDataReportListResp.java

@@ -1,12 +0,0 @@
-package org.examcloud.core.reports.api.response;
-
-import cn.com.qmth.examcloud.api.commons.exchange.BaseResponse;
-
-public class SaveExamDataReportListResp extends BaseResponse {
-
-	/**
-	 * 
-	 */
-	private static final long serialVersionUID = -9184195013691828758L;
-
-}