| | |
| | | package com.mindskip.xzs.domain; |
| | | |
| | | import com.mindskip.xzs.domain.enums.AnswerInvalidEnum; |
| | | |
| | | import java.io.Serializable; |
| | | import java.util.Date; |
| | | |
| | |
| | | * 提交时间 |
| | | */ |
| | | private Date createTime; |
| | | /** |
| | | * 考试次数 |
| | | */ |
| | | private Integer counts; |
| | | |
| | | |
| | | private Integer taskExamId; |
| | | |
| | | private String formattedTime; |
| | | |
| | | |
| | | private String userName; |
| | | |
| | | /** |
| | | * 是否作废:1/0 是/否(作废代表需要补考) |
| | | */ |
| | | private AnswerInvalidEnum invalid; |
| | | |
| | | |
| | | public AnswerInvalidEnum getInvalid() { |
| | | return invalid; |
| | | } |
| | | |
| | | public void setInvalid(AnswerInvalidEnum invalid) { |
| | | this.invalid = invalid; |
| | | } |
| | | |
| | | public Integer getId() { |
| | | return id; |
| | |
| | | public void setTaskExamId(Integer taskExamId) { |
| | | this.taskExamId = taskExamId; |
| | | } |
| | | public Integer getCounts() { |
| | | return counts; |
| | | } |
| | | |
| | | public void setCounts(Integer counts) { |
| | | this.counts = counts; |
| | | } |
| | | |
| | | public String getFormattedTime() { |
| | | return formattedTime; |
| | | } |
| | | |
| | | public void setFormattedTime(String formattedTime) { |
| | | this.formattedTime = formattedTime == null ? null : formattedTime.trim(); |
| | | } |
| | | |
| | | public String getUserName() { |
| | | return userName; |
| | | } |
| | | |
| | | public void setUserName(String userName) { |
| | | this.userName = userName; |
| | | } |
| | | |
| | | |
| | | } |