package com.mindskip.xzs.domain.vo;
|
|
import com.mindskip.xzs.base.BasePage;
|
import com.mindskip.xzs.domain.ExamTemplates;
|
import com.mindskip.xzs.domain.ExamTemplatesSubject;
|
|
import java.io.Serializable;
|
import java.time.LocalDateTime;
|
import java.util.Arrays;
|
import java.util.Date;
|
import java.util.List;
|
|
public class ExamTemplatesVO extends BasePage implements Serializable {
|
|
private Integer id;
|
private String name;
|
private Date ctime;
|
private LocalDateTime now;
|
private Integer[] subjectId;
|
private String status;
|
private Integer userId;
|
|
public LocalDateTime getNow() {
|
return now;
|
}
|
|
public void setNow(LocalDateTime now) {
|
this.now = now;
|
}
|
|
public Integer getId() {
|
return id;
|
}
|
|
public void setId(Integer id) {
|
this.id = id;
|
}
|
|
public String getName() {
|
return name;
|
}
|
|
public void setName(String name) {
|
this.name = name;
|
}
|
|
public Date getCtime() {
|
return ctime;
|
}
|
|
public void setCtime(Date ctime) {
|
this.ctime = ctime;
|
}
|
|
public Integer[] getSubjectId() {
|
return subjectId;
|
}
|
|
public void setSubjectId(Integer[] subjectId) {
|
this.subjectId = subjectId;
|
}
|
|
public String getStatus() {
|
return status;
|
}
|
|
public void setStatus(String status) {
|
this.status = status;
|
}
|
|
public Integer getUserId() {
|
return userId;
|
}
|
|
public void setUserId(Integer userId) {
|
this.userId = userId;
|
}
|
|
@Override
|
public String toString() {
|
return "ExamTemplatesVO{" +
|
"id=" + id +
|
", name='" + name + '\'' +
|
", ctime=" + ctime +
|
", now=" + now +
|
", subjectId=" + Arrays.toString(subjectId) +
|
", status='" + status + '\'' +
|
", userId=" + userId +
|
'}';
|
}
|
}
|