| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778 |
- 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);
- }
- }
|