|
@@ -50,30 +50,6 @@ public class Question {
|
|
|
@ApiModelProperty("题目时间")
|
|
|
private int duration;
|
|
|
|
|
|
- @Column(nullable = false, columnDefinition = " double(10,2) default 0")
|
|
|
- @ApiModelProperty("计算能力分数")
|
|
|
- private Double calculation;
|
|
|
-
|
|
|
- @Column(nullable = false, columnDefinition = " double(10,2) default 0")
|
|
|
- @ApiModelProperty("归纳类比分数")
|
|
|
- private Double induction;
|
|
|
-
|
|
|
- @Column(nullable = false, columnDefinition = " double(10,2) default 0")
|
|
|
- @ApiModelProperty("逻辑推理")
|
|
|
- private Double logic;
|
|
|
-
|
|
|
- @Column(nullable = false, columnDefinition = " double(10,2) default 0")
|
|
|
- @ApiModelProperty("空间想象")
|
|
|
- private Double space;
|
|
|
-
|
|
|
- @Column(nullable = false, columnDefinition = " double(10,2) default 0")
|
|
|
- @ApiModelProperty("语言能力")
|
|
|
- private Double language;
|
|
|
-
|
|
|
- @Column(nullable = false, columnDefinition = " double(10,2) default 0")
|
|
|
- @ApiModelProperty("转化能力")
|
|
|
- private Double conversion;
|
|
|
-
|
|
|
@Column(nullable = false, columnDefinition = "double(10,2) default 0")
|
|
|
@ApiModelProperty("单题得分")
|
|
|
private Double score;//单题得分
|
|
@@ -182,53 +158,7 @@ public class Question {
|
|
|
this.duration = duration;
|
|
|
}
|
|
|
|
|
|
- public Double getCalculation() {
|
|
|
- return calculation;
|
|
|
- }
|
|
|
-
|
|
|
- public void setCalculation(Double calculation) {
|
|
|
- this.calculation = calculation;
|
|
|
- }
|
|
|
-
|
|
|
- public Double getInduction() {
|
|
|
- return induction;
|
|
|
- }
|
|
|
-
|
|
|
- public void setInduction(Double induction) {
|
|
|
- this.induction = induction;
|
|
|
- }
|
|
|
-
|
|
|
- public Double getLogic() {
|
|
|
- return logic;
|
|
|
- }
|
|
|
|
|
|
- public void setLogic(Double logic) {
|
|
|
- this.logic = logic;
|
|
|
- }
|
|
|
-
|
|
|
- public Double getSpace() {
|
|
|
- return space;
|
|
|
- }
|
|
|
-
|
|
|
- public void setSpace(Double space) {
|
|
|
- this.space = space;
|
|
|
- }
|
|
|
-
|
|
|
- public Double getLanguage() {
|
|
|
- return language;
|
|
|
- }
|
|
|
-
|
|
|
- public void setLanguage(Double language) {
|
|
|
- this.language = language;
|
|
|
- }
|
|
|
-
|
|
|
- public Double getConversion() {
|
|
|
- return conversion;
|
|
|
- }
|
|
|
-
|
|
|
- public void setConversion(Double conversion) {
|
|
|
- this.conversion = conversion;
|
|
|
- }
|
|
|
|
|
|
public Double getScore() {
|
|
|
return score;
|
|
@@ -327,11 +257,4 @@ public class Question {
|
|
|
this.jsonScore = jsonScore;
|
|
|
}
|
|
|
|
|
|
-// public String getMatter() {
|
|
|
-// return matter;
|
|
|
-// }
|
|
|
-//
|
|
|
-// public void setMatter(String matter) {
|
|
|
-// this.matter = matter;
|
|
|
-// }
|
|
|
}
|