|
@@ -45,6 +45,9 @@ public class NeedCheckingDetailDto {
|
|
|
@ApiModelProperty(value = "级别")
|
|
|
private Integer level;
|
|
|
|
|
|
+ @ApiModelProperty(value = "学员大概考试时长")
|
|
|
+ private Integer recordMinutes;
|
|
|
+
|
|
|
@ApiModelProperty(value = "声部")
|
|
|
private String subjectName;
|
|
|
|
|
@@ -57,6 +60,14 @@ public class NeedCheckingDetailDto {
|
|
|
@ApiModelProperty(value = "机构")
|
|
|
private String tenantId;
|
|
|
|
|
|
+ public Integer getRecordMinutes() {
|
|
|
+ return recordMinutes;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setRecordMinutes(Integer recordMinutes) {
|
|
|
+ this.recordMinutes = recordMinutes;
|
|
|
+ }
|
|
|
+
|
|
|
public Date getRecordStartTime() {
|
|
|
return recordStartTime;
|
|
|
}
|