ExamSubjectSong.java 3.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155
  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_song):
  6. */
  7. public class ExamSubjectSong {
  8. @ApiModelProperty(value = "考试内容编号")
  9. private Long id;
  10. @ApiModelProperty(value = "考试项目")
  11. private Integer examinationBasicId;
  12. @ApiModelProperty(value = "专业")
  13. private Long examSubjectId;
  14. @ApiModelProperty(value = "级别")
  15. private Integer level;
  16. @ApiModelProperty(value = "练习曲数量")
  17. private Integer practiceNum;
  18. @ApiModelProperty(value = "练习曲列表")
  19. private String practiceSongIdList;
  20. @ApiModelProperty(value = "演奏曲数量")
  21. private Integer performNum;
  22. @ApiModelProperty(value = "演奏曲列表")
  23. private String performSongIdList;
  24. @ApiModelProperty(value = "报名费用")
  25. private java.math.BigDecimal registrationFee;
  26. private java.util.Date createTime;
  27. private java.util.Date updateTime;
  28. private String tenantId;
  29. private Subject subject;
  30. public Subject getSubject() {
  31. return subject;
  32. }
  33. public void setSubject(Subject subject) {
  34. this.subject = subject;
  35. }
  36. public void setId(Long id){
  37. this.id = id;
  38. }
  39. public Long getId(){
  40. return this.id;
  41. }
  42. public void setExaminationBasicId(Integer examinationBasicId){
  43. this.examinationBasicId = examinationBasicId;
  44. }
  45. public Integer getExaminationBasicId(){
  46. return this.examinationBasicId;
  47. }
  48. public void setExamSubjectId(Long examSubjectId){
  49. this.examSubjectId = examSubjectId;
  50. }
  51. public Long getExamSubjectId(){
  52. return this.examSubjectId;
  53. }
  54. public void setLevel(Integer level){
  55. this.level = level;
  56. }
  57. public Integer getLevel(){
  58. return this.level;
  59. }
  60. public void setPracticeNum(Integer practiceNum){
  61. this.practiceNum = practiceNum;
  62. }
  63. public Integer getPracticeNum(){
  64. return this.practiceNum;
  65. }
  66. public void setPracticeSongIdList(String practiceSongIdList){
  67. this.practiceSongIdList = practiceSongIdList;
  68. }
  69. public String getPracticeSongIdList(){
  70. return this.practiceSongIdList;
  71. }
  72. public void setPerformNum(Integer performNum){
  73. this.performNum = performNum;
  74. }
  75. public Integer getPerformNum(){
  76. return this.performNum;
  77. }
  78. public void setPerformSongIdList(String performSongIdList){
  79. this.performSongIdList = performSongIdList;
  80. }
  81. public String getPerformSongIdList(){
  82. return this.performSongIdList;
  83. }
  84. public void setRegistrationFee(java.math.BigDecimal registrationFee){
  85. this.registrationFee = registrationFee;
  86. }
  87. public java.math.BigDecimal getRegistrationFee(){
  88. return this.registrationFee;
  89. }
  90. public void setCreateTime(java.util.Date createTime){
  91. this.createTime = createTime;
  92. }
  93. public java.util.Date getCreateTime(){
  94. return this.createTime;
  95. }
  96. public void setUpdateTime(java.util.Date updateTime){
  97. this.updateTime = updateTime;
  98. }
  99. public java.util.Date getUpdateTime(){
  100. return this.updateTime;
  101. }
  102. public void setTenantId(String tenantId){
  103. this.tenantId = tenantId;
  104. }
  105. public String getTenantId(){
  106. return this.tenantId;
  107. }
  108. @Override
  109. public String toString() {
  110. return ToStringBuilder.reflectionToString(this);
  111. }
  112. }