| | |
| | | package com.mindskip.xzs.domain.vo; |
| | | |
| | | import com.fasterxml.jackson.annotation.JsonFormat; |
| | | import com.mindskip.xzs.base.BasePage; |
| | | import lombok.Data; |
| | | |
| | |
| | | public class ExamTemplatesVO extends BasePage implements Serializable { |
| | | |
| | | private Integer id; |
| | | |
| | | private String name; |
| | | |
| | | @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8") |
| | | private Date ctime; |
| | | |
| | | private LocalDateTime now; |
| | | |
| | | private Integer[] subjectId; |
| | | |
| | | /** 课目名字 */ |
| | | private String subjectNames; |
| | | |
| | | private String status; |
| | | |
| | | private Integer userId; |
| | | |
| | | /** |
| | |
| | | |
| | | private List<Integer> paperIds; |
| | | |
| | | private String createDepartment; |
| | | |
| | | private Integer createUser; |
| | | |
| | | /** |
| | | * 时间周期 |
| | | */ |
| | | private List<String> period; |
| | | |
| | | } |