|
@@ -7,17 +7,17 @@ public class OuterQueryFinalScoreDataResp extends EnterpriseResponse {
|
|
|
|
|
|
private static final long serialVersionUID = 7651693026235437061L;
|
|
|
|
|
|
- @ApiModelProperty(value = "最终成绩(缺考、违纪、未审核时,返回空)", example = "100.0")
|
|
|
+ @ApiModelProperty(value = "最终成绩(缺考、违纪未审核时,返回空)", example = "100.0")
|
|
|
private Double totalScore;
|
|
|
|
|
|
@ApiModelProperty(value = "是否缺考", example = "false")
|
|
|
private Boolean absent;
|
|
|
|
|
|
- @ApiModelProperty(value = "是否违纪", example = "false")
|
|
|
- private Boolean illegality;
|
|
|
+ // @ApiModelProperty(value = "是否违纪", example = "false")
|
|
|
+ // private Boolean illegality;
|
|
|
|
|
|
- @ApiModelProperty(value = "是否已审核", example = "false")
|
|
|
- private Boolean audit;
|
|
|
+ // @ApiModelProperty(value = "是否已审核", example = "false")
|
|
|
+ // private Boolean audit;
|
|
|
|
|
|
public Double getTotalScore() {
|
|
|
return totalScore;
|
|
@@ -35,20 +35,4 @@ public class OuterQueryFinalScoreDataResp extends EnterpriseResponse {
|
|
|
this.absent = absent;
|
|
|
}
|
|
|
|
|
|
- public Boolean getIllegality() {
|
|
|
- return illegality;
|
|
|
- }
|
|
|
-
|
|
|
- public void setIllegality(Boolean illegality) {
|
|
|
- this.illegality = illegality;
|
|
|
- }
|
|
|
-
|
|
|
- public Boolean getAudit() {
|
|
|
- return audit;
|
|
|
- }
|
|
|
-
|
|
|
- public void setAudit(Boolean audit) {
|
|
|
- this.audit = audit;
|
|
|
- }
|
|
|
-
|
|
|
}
|