|
@@ -51,7 +51,7 @@ public class TAExamCourseExportDto implements Serializable {
|
|
|
private String currentNotPassRateBefore;
|
|
|
|
|
|
@ExcelProperty(name = "赋分系数", width = 30, index = 12)
|
|
|
- private BigDecimal coefficient;
|
|
|
+ private String coefficient;
|
|
|
|
|
|
@ExcelProperty(name = "总体平均分-赋分后", width = 50, index = 13)
|
|
|
private BigDecimal avgScoreAfter;
|
|
@@ -237,15 +237,11 @@ public class TAExamCourseExportDto implements Serializable {
|
|
|
this.currentNotPassRateBefore = currentNotPassRateBefore;
|
|
|
}
|
|
|
|
|
|
- public BigDecimal getCoefficient() {
|
|
|
- if (Objects.nonNull(coefficient)) {
|
|
|
- return coefficient.setScale(SystemConstant.FINAL_SCALE, BigDecimal.ROUND_HALF_UP);
|
|
|
- } else {
|
|
|
- return coefficient;
|
|
|
- }
|
|
|
+ public String getCoefficient() {
|
|
|
+ return coefficient;
|
|
|
}
|
|
|
|
|
|
- public void setCoefficient(BigDecimal coefficient) {
|
|
|
+ public void setCoefficient(String coefficient) {
|
|
|
this.coefficient = coefficient;
|
|
|
}
|
|
|
|