|
@@ -0,0 +1,142 @@
|
|
|
+package com.qmth.teachcloud.report.business.bean.result;
|
|
|
+
|
|
|
+import com.fasterxml.jackson.annotation.JsonInclude;
|
|
|
+import com.fasterxml.jackson.databind.annotation.JsonSerialize;
|
|
|
+import com.fasterxml.jackson.databind.ser.std.ToStringSerializer;
|
|
|
+import io.swagger.annotations.ApiModelProperty;
|
|
|
+
|
|
|
+import java.io.Serializable;
|
|
|
+import java.math.BigDecimal;
|
|
|
+
|
|
|
+/**
|
|
|
+ * @Description: 课程维度result
|
|
|
+ * @Param:
|
|
|
+ * @return:
|
|
|
+ * @Author: wangliang
|
|
|
+ * @Date: 2021/6/10
|
|
|
+ */
|
|
|
+@JsonInclude(JsonInclude.Include.NON_NULL)
|
|
|
+public class CourseDimensionResult implements Serializable {
|
|
|
+
|
|
|
+ @ApiModelProperty(value = "考试id")
|
|
|
+ @JsonSerialize(using = ToStringSerializer.class)
|
|
|
+ private Long examId;
|
|
|
+
|
|
|
+ @ApiModelProperty(value = "考试编码")
|
|
|
+ private String examCode;
|
|
|
+
|
|
|
+ @ApiModelProperty(value = "科目编码")
|
|
|
+ private String courseCode;
|
|
|
+
|
|
|
+ @ApiModelProperty(value = "模块")
|
|
|
+ private String module;
|
|
|
+
|
|
|
+ @ApiModelProperty(value = "维度编码")
|
|
|
+ private String dimensionCode;
|
|
|
+
|
|
|
+ @ApiModelProperty(value = "维度名称")
|
|
|
+ private String dimensionName;
|
|
|
+
|
|
|
+ @ApiModelProperty(value = "简介")
|
|
|
+ private String interpretation;
|
|
|
+
|
|
|
+ @ApiModelProperty(value = "共计")
|
|
|
+ private Integer totalCount;
|
|
|
+
|
|
|
+ @ApiModelProperty(value = "学校比率")
|
|
|
+ private BigDecimal schScoreRate;
|
|
|
+
|
|
|
+ @ApiModelProperty(value = "学院比率")
|
|
|
+ private BigDecimal colScoreRate;
|
|
|
+
|
|
|
+ @ApiModelProperty(value = "学院名称")
|
|
|
+ private String collegeName;
|
|
|
+
|
|
|
+ public Long getExamId() {
|
|
|
+ return examId;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setExamId(Long examId) {
|
|
|
+ this.examId = examId;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getExamCode() {
|
|
|
+ return examCode;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setExamCode(String examCode) {
|
|
|
+ this.examCode = examCode;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getCourseCode() {
|
|
|
+ return courseCode;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setCourseCode(String courseCode) {
|
|
|
+ this.courseCode = courseCode;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getModule() {
|
|
|
+ return module;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setModule(String module) {
|
|
|
+ this.module = module;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getDimensionCode() {
|
|
|
+ return dimensionCode;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setDimensionCode(String dimensionCode) {
|
|
|
+ this.dimensionCode = dimensionCode;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getDimensionName() {
|
|
|
+ return dimensionName;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setDimensionName(String dimensionName) {
|
|
|
+ this.dimensionName = dimensionName;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getInterpretation() {
|
|
|
+ return interpretation;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setInterpretation(String interpretation) {
|
|
|
+ this.interpretation = interpretation;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Integer getTotalCount() {
|
|
|
+ return totalCount;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setTotalCount(Integer totalCount) {
|
|
|
+ this.totalCount = totalCount;
|
|
|
+ }
|
|
|
+
|
|
|
+ public BigDecimal getSchScoreRate() {
|
|
|
+ return schScoreRate;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setSchScoreRate(BigDecimal schScoreRate) {
|
|
|
+ this.schScoreRate = schScoreRate;
|
|
|
+ }
|
|
|
+
|
|
|
+ public BigDecimal getColScoreRate() {
|
|
|
+ return colScoreRate;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setColScoreRate(BigDecimal colScoreRate) {
|
|
|
+ this.colScoreRate = colScoreRate;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getCollegeName() {
|
|
|
+ return collegeName;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setCollegeName(String collegeName) {
|
|
|
+ this.collegeName = collegeName;
|
|
|
+ }
|
|
|
+}
|