| | |
| | | package com.mindskip.xzs.domain; |
| | | |
| | | import io.swagger.models.auth.In; |
| | | import lombok.Data; |
| | | |
| | | import java.io.Serializable; |
| | | |
| | | @Data |
| | | public class ExamTemplatesSubject implements Serializable { |
| | | |
| | | private Integer id; |
| | | |
| | | private Integer subjectId; |
| | | |
| | | private String subjectName; |
| | | |
| | | private Integer templatesId; |
| | | |
| | | public Integer getId() { |
| | | return id; |
| | | } |
| | | |
| | | public void setId(Integer id) { |
| | | this.id = id; |
| | | } |
| | | |
| | | public Integer getSubjectId() { |
| | | return subjectId; |
| | | } |
| | | |
| | | public void setSubjectId(Integer subjectId) { |
| | | this.subjectId = subjectId; |
| | | } |
| | | |
| | | public Integer getTemplatesId() { |
| | | return templatesId; |
| | | } |
| | | |
| | | public void setTemplatesId(Integer templatesId) { |
| | | this.templatesId = templatesId; |
| | | } |
| | | |
| | | @Override |
| | | public String toString() { |
| | | return "ExamTemplatesSubject{" + |
| | | "id=" + id + |
| | | ", subjectId=" + subjectId + |
| | | ", templatesId=" + templatesId + |
| | | '}'; |
| | | } |
| | | } |