package com.keao.edu.user.entity; import io.swagger.annotations.ApiModelProperty; import org.apache.commons.lang3.builder.ToStringBuilder; /** * 对应数据库表(exam_subject): */ public class ExamSubject { private Long id; @ApiModelProperty(value = "考级项目编号") private Integer examinationBasicId; @ApiModelProperty(value = "声部编号") private Integer subjectId; private java.util.Date createTime; private java.util.Date updateTime; private String tenantId; public void setId(Long id){ this.id = id; } public Long getId(){ return this.id; } public void setExaminationBasicId(Integer examinationBasicId){ this.examinationBasicId = examinationBasicId; } public Integer getExaminationBasicId(){ return this.examinationBasicId; } public void setSubjectId(Integer subjectId){ this.subjectId = subjectId; } public Integer getSubjectId(){ return this.subjectId; } public void setCreateTime(java.util.Date createTime){ this.createTime = createTime; } public java.util.Date getCreateTime(){ return this.createTime; } public void setUpdateTime(java.util.Date updateTime){ this.updateTime = updateTime; } public java.util.Date getUpdateTime(){ return this.updateTime; } public void setTenantId(String tenantId){ this.tenantId = tenantId; } public String getTenantId(){ return this.tenantId; } @Override public String toString() { return ToStringBuilder.reflectionToString(this); } }