ExamSubject.java 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778
  1. package com.keao.edu.user.entity;
  2. import io.swagger.annotations.ApiModelProperty;
  3. import org.apache.commons.lang3.builder.ToStringBuilder;
  4. /**
  5. * 对应数据库表(exam_subject):
  6. */
  7. public class ExamSubject {
  8. private Long id;
  9. @ApiModelProperty(value = "考级项目编号")
  10. private Integer examinationBasicId;
  11. @ApiModelProperty(value = "声部编号")
  12. private Integer subjectId;
  13. private java.util.Date createTime;
  14. private java.util.Date updateTime;
  15. private String tenantId;
  16. public void setId(Long id){
  17. this.id = id;
  18. }
  19. public Long getId(){
  20. return this.id;
  21. }
  22. public void setExaminationBasicId(Integer examinationBasicId){
  23. this.examinationBasicId = examinationBasicId;
  24. }
  25. public Integer getExaminationBasicId(){
  26. return this.examinationBasicId;
  27. }
  28. public void setSubjectId(Integer subjectId){
  29. this.subjectId = subjectId;
  30. }
  31. public Integer getSubjectId(){
  32. return this.subjectId;
  33. }
  34. public void setCreateTime(java.util.Date createTime){
  35. this.createTime = createTime;
  36. }
  37. public java.util.Date getCreateTime(){
  38. return this.createTime;
  39. }
  40. public void setUpdateTime(java.util.Date updateTime){
  41. this.updateTime = updateTime;
  42. }
  43. public java.util.Date getUpdateTime(){
  44. return this.updateTime;
  45. }
  46. public void setTenantId(String tenantId){
  47. this.tenantId = tenantId;
  48. }
  49. public String getTenantId(){
  50. return this.tenantId;
  51. }
  52. @Override
  53. public String toString() {
  54. return ToStringBuilder.reflectionToString(this);
  55. }
  56. }