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.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 Integer[] subjectId;
|
|
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;
|
}
|
|
@Override
|
public String toString() {
|
return "ExamTemplatesVO{" +
|
"id=" + id +
|
", name='" + name + '\'' +
|
", ctime=" + ctime +
|
", subjectId=" + Arrays.toString(subjectId) +
|
'}';
|
}
|
}
|