| | |
| | | |
| | | import com.fasterxml.jackson.annotation.JsonFormat; |
| | | import lombok.Data; |
| | | import org.springframework.format.annotation.DateTimeFormat; |
| | | |
| | | import java.time.LocalDate; |
| | | import java.util.Date; |
| | |
| | | private String idcard; |
| | | private String name; |
| | | private String courseUuid; |
| | | @JsonFormat(pattern = "yyyy-MM-dd") |
| | | @DateTimeFormat(pattern = "yyyy-MM-dd") |
| | | private Date startTime; |
| | | @JsonFormat(pattern = "yyyy-MM-dd") |
| | | @DateTimeFormat(pattern = "yyyy-MM-dd") |
| | | private Date endTime; |
| | | |
| | | private Integer pageNum; |
| | |
| | | /** 每页显示记录数 */ |
| | | private Integer pageSize; |
| | | private Integer startSize; |
| | | private Long institutionId; |
| | | } |