ExamMusicTheory.java 1.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192
  1. package com.keao.edu.user.entity;
  2. import org.apache.commons.lang3.builder.ToStringBuilder;
  3. /**
  4. * 对应数据库表(exam_music_theory):
  5. */
  6. public class ExamMusicTheory {
  7. /** */
  8. private Integer id;
  9. /** */
  10. private Long examinationBasicId;
  11. /** 等级 */
  12. private Integer level;
  13. /** 费用 */
  14. private java.math.BigDecimal fee;
  15. /** */
  16. private String tenantId;
  17. /** */
  18. private java.util.Date createTime;
  19. /** */
  20. private java.util.Date updateTime;
  21. public void setId(Integer id){
  22. this.id = id;
  23. }
  24. public Integer getId(){
  25. return this.id;
  26. }
  27. public Long getExaminationBasicId() {
  28. return examinationBasicId;
  29. }
  30. public void setExaminationBasicId(Long examinationBasicId) {
  31. this.examinationBasicId = examinationBasicId;
  32. }
  33. public void setLevel(Integer level){
  34. this.level = level;
  35. }
  36. public Integer getLevel(){
  37. return this.level;
  38. }
  39. public void setFee(java.math.BigDecimal fee){
  40. this.fee = fee;
  41. }
  42. public java.math.BigDecimal getFee(){
  43. return this.fee;
  44. }
  45. public String getTenantId() {
  46. return tenantId;
  47. }
  48. public void setTenantId(String tenantId) {
  49. this.tenantId = tenantId;
  50. }
  51. public void setCreateTime(java.util.Date createTime){
  52. this.createTime = createTime;
  53. }
  54. public java.util.Date getCreateTime(){
  55. return this.createTime;
  56. }
  57. public void setUpdateTime(java.util.Date updateTime){
  58. this.updateTime = updateTime;
  59. }
  60. public java.util.Date getUpdateTime(){
  61. return this.updateTime;
  62. }
  63. @Override
  64. public String toString() {
  65. return ToStringBuilder.reflectionToString(this);
  66. }
  67. }