|
@@ -1,8 +1,10 @@
|
|
|
package com.keao.edu.user.dto;
|
|
|
|
|
|
import com.keao.edu.user.entity.ExamOrganizationRelation;
|
|
|
+import io.swagger.annotations.ApiModelProperty;
|
|
|
|
|
|
import java.math.BigDecimal;
|
|
|
+import java.util.Date;
|
|
|
import java.util.List;
|
|
|
import java.util.Map;
|
|
|
|
|
@@ -20,6 +22,9 @@ public class ExamOrganStatisticsDto extends ExamOrganizationRelation {
|
|
|
|
|
|
private BigDecimal todayTotalPaymentAmount;
|
|
|
|
|
|
+ @ApiModelProperty(value = "报名开始时间")
|
|
|
+ private java.util.Date enrollStartTime;
|
|
|
+
|
|
|
public List<ExamLifecycleLogDto> getExamLifecycleLogs() {
|
|
|
return examLifecycleLogs;
|
|
|
}
|
|
@@ -51,4 +56,12 @@ public class ExamOrganStatisticsDto extends ExamOrganizationRelation {
|
|
|
public void setTodayTotalPaymentAmount(BigDecimal todayTotalPaymentAmount) {
|
|
|
this.todayTotalPaymentAmount = todayTotalPaymentAmount;
|
|
|
}
|
|
|
+
|
|
|
+ public Date getEnrollStartTime() {
|
|
|
+ return enrollStartTime;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setEnrollStartTime(Date enrollStartTime) {
|
|
|
+ this.enrollStartTime = enrollStartTime;
|
|
|
+ }
|
|
|
}
|