package com.mindskip.xzs.domain;
|
|
import java.io.Serializable;
|
|
public class ExamPaperSubject implements Serializable {
|
|
private Integer id;
|
|
private Integer examPaperId;
|
|
private Integer subjectId;
|
|
private String deleted;
|
|
public Integer getId() {
|
return id;
|
}
|
|
public void setId(Integer id) {
|
this.id = id;
|
}
|
|
public Integer getExamPaperId() {
|
return examPaperId;
|
}
|
|
public void setExamPaperId(Integer examPaperId) {
|
this.examPaperId = examPaperId;
|
}
|
|
public Integer getSubjectId() {
|
return subjectId;
|
}
|
|
public void setSubjectId(Integer subjectId) {
|
this.subjectId = subjectId;
|
}
|
|
public String getDeleted() {
|
return deleted;
|
}
|
|
public void setDeleted(String deleted) {
|
this.deleted = deleted;
|
}
|
}
|