| | |
| | | @Valid |
| | | private List<ExamPaperSubmitItemVM> answerItems; |
| | | |
| | | //模板id |
| | | private Integer templatesId; |
| | | |
| | | /** |
| | | * 是否时间结束自动提交 |
| | | */ |
| | | private boolean isAutoCommit; |
| | | |
| | | public boolean isAutoCommit() { |
| | | return isAutoCommit; |
| | | } |
| | | |
| | | public void setAutoCommit(boolean autoCommit) { |
| | | isAutoCommit = autoCommit; |
| | | } |
| | | |
| | | public Integer getId() { |
| | | return id; |
| | | } |
| | |
| | | public void setAnswerItems(List<ExamPaperSubmitItemVM> answerItems) { |
| | | this.answerItems = answerItems; |
| | | } |
| | | |
| | | public Integer getTemplatesId() { |
| | | return templatesId; |
| | | } |
| | | |
| | | public void setTemplatesId(Integer templatesId) { |
| | | this.templatesId = templatesId; |
| | | } |
| | | } |