| | |
| | | import lombok.Data; |
| | | import org.springblade.modules.training.entity.TrainingRegistration; |
| | | import org.springframework.format.annotation.DateTimeFormat; |
| | | import org.springframework.web.bind.annotation.RequestParam; |
| | | |
| | | import java.io.Serializable; |
| | | import java.util.Date; |
| | |
| | | */ |
| | | private String userIds; |
| | | |
| | | /** |
| | | * 报名人数 |
| | | */ |
| | | private Integer number; |
| | | |
| | | /** |
| | | * 审核状态 1:审核通过 2:未通过审核 3:审核中 4:待审核 |
| | | * 开始序列号 |
| | | */ |
| | | private Integer auditStatus; |
| | | private Integer serialStart; |
| | | |
| | | /** |
| | | * 结束序列号 |
| | | */ |
| | | private Integer serialEnd; |
| | | |
| | | |
| | | /** |
| | | * 培训考试开始时间 |
| | | */ |
| | | private Date startTime; |
| | | |
| | | /** |
| | | * 培训考试结束时间 |
| | | */ |
| | | private Date endTime; |
| | | } |