| | |
| | | package com.gkhy.exam.coalmine.entity; |
| | | |
| | | import java.time.LocalDate; |
| | | import java.time.LocalDateTime; |
| | | |
| | | import com.baomidou.mybatisplus.annotation.*; |
| | |
| | | import com.fasterxml.jackson.annotation.JsonFormat; |
| | | import lombok.Data; |
| | | import org.springframework.data.annotation.Id; |
| | | |
| | | import javax.validation.constraints.NotNull; |
| | | |
| | | @Data |
| | | @TableName("cm_staff_exam") |
| | |
| | | //人员id |
| | | private Long staffId; |
| | | |
| | | //开始时间 |
| | | private LocalDateTime startTime; |
| | | |
| | | //结束时间 |
| | | private LocalDateTime endTime; |
| | | private LocalDate examTime; |
| | | |
| | | //考试中心 |
| | | private String examCenter; |