From f63fff71fcd7a62ad73b0b9eda614f3b1fa3badf Mon Sep 17 00:00:00 2001 From: 钟日健 <5689795+arsn@user.noreply.gitee.com> Date: Fri, 22 Oct 2021 22:51:09 +0800 Subject: [PATCH] 考试成绩修改状态重置 --- src/main/java/org/springblade/modules/apply/vo/ApplyVO.java | 31 +++++++++++++++++++++++++++++++ 1 files changed, 31 insertions(+), 0 deletions(-) diff --git a/src/main/java/org/springblade/modules/apply/vo/ApplyVO.java b/src/main/java/org/springblade/modules/apply/vo/ApplyVO.java index fb1473b..b50e730 100644 --- a/src/main/java/org/springblade/modules/apply/vo/ApplyVO.java +++ b/src/main/java/org/springblade/modules/apply/vo/ApplyVO.java @@ -21,6 +21,7 @@ import org.springblade.modules.apply.entity.Apply; import java.io.Serializable; +import java.util.Date; /** * 考试报名实体类 @@ -88,4 +89,34 @@ */ private Integer sex; + /** + * 部门id + */ + private Long deptId; + + /** + * 报名人数 + */ + private Integer number; + + /** + * 开始序列号 + */ + private Integer serialStart; + + /** + * 结束序列号 + */ + private Integer serialEnd; + + + /** + * 培训考试开始时间 + */ + private Date startTime; + + /** + * 培训考试结束时间 + */ + private Date endTime; } -- Gitblit v1.9.3