ExamTeacherSalary.java 3.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159
  1. package com.keao.edu.user.entity;
  2. import com.keao.edu.auth.api.entity.SysUser;
  3. import com.keao.edu.user.api.enums.ExamModeEnum;
  4. import com.keao.edu.user.enums.TeacherSettlementTypeEnum;
  5. import io.swagger.annotations.ApiModelProperty;
  6. import org.apache.commons.lang3.builder.ToStringBuilder;
  7. import java.math.BigDecimal;
  8. /**
  9. * 对应数据库表(exam_teacher_salary):
  10. */
  11. public class ExamTeacherSalary {
  12. private Long id;
  13. @ApiModelProperty(value = "考级项目编号")
  14. private Long examinationBasicId;
  15. @ApiModelProperty(value = "考试类型")
  16. private ExamModeEnum examMode;
  17. @ApiModelProperty(value = "教室编号")
  18. private Integer teacherId;
  19. private SysUser teacher;
  20. @ApiModelProperty(value = "结算类型(按天/人)")
  21. private TeacherSettlementTypeEnum settlementType;
  22. @ApiModelProperty(value = "分润金额")
  23. private java.math.BigDecimal shareProfitAmount;
  24. @ApiModelProperty(value = "总监考次数")
  25. private Integer totalInvigilationNum;
  26. @ApiModelProperty(value = "监考学员数")
  27. private Integer totalInvigilationStudentNum;
  28. @ApiModelProperty(value = "结算费用")
  29. private BigDecimal totalSettlementCost;
  30. private java.util.Date createTime;
  31. private java.util.Date updateTime;
  32. private String tenantId;
  33. public void setId(Long id){
  34. this.id = id;
  35. }
  36. public Long getId(){
  37. return this.id;
  38. }
  39. public ExamModeEnum getExamMode() {
  40. return examMode;
  41. }
  42. public void setExamMode(ExamModeEnum examMode) {
  43. this.examMode = examMode;
  44. }
  45. public TeacherSettlementTypeEnum getSettlementType() {
  46. return settlementType;
  47. }
  48. public void setSettlementType(TeacherSettlementTypeEnum settlementType) {
  49. this.settlementType = settlementType;
  50. }
  51. public Long getExaminationBasicId() {
  52. return examinationBasicId;
  53. }
  54. public void setExaminationBasicId(Long examinationBasicId) {
  55. this.examinationBasicId = examinationBasicId;
  56. }
  57. public void setTeacherId(Integer teacherId){
  58. this.teacherId = teacherId;
  59. }
  60. public Integer getTeacherId(){
  61. return this.teacherId;
  62. }
  63. public SysUser getTeacher() {
  64. return teacher;
  65. }
  66. public void setTeacher(SysUser teacher) {
  67. this.teacher = teacher;
  68. }
  69. public void setShareProfitAmount(java.math.BigDecimal shareProfitAmount){
  70. this.shareProfitAmount = shareProfitAmount;
  71. }
  72. public java.math.BigDecimal getShareProfitAmount(){
  73. return this.shareProfitAmount;
  74. }
  75. public Integer getTotalInvigilationNum() {
  76. return totalInvigilationNum;
  77. }
  78. public void setTotalInvigilationNum(Integer totalInvigilationNum) {
  79. this.totalInvigilationNum = totalInvigilationNum;
  80. }
  81. public Integer getTotalInvigilationStudentNum() {
  82. return totalInvigilationStudentNum;
  83. }
  84. public void setTotalInvigilationStudentNum(Integer totalInvigilationStudentNum) {
  85. this.totalInvigilationStudentNum = totalInvigilationStudentNum;
  86. }
  87. public BigDecimal getTotalSettlementCost() {
  88. return totalSettlementCost;
  89. }
  90. public void setTotalSettlementCost(BigDecimal totalSettlementCost) {
  91. this.totalSettlementCost = totalSettlementCost;
  92. }
  93. public void setCreateTime(java.util.Date createTime){
  94. this.createTime = createTime;
  95. }
  96. public java.util.Date getCreateTime(){
  97. return this.createTime;
  98. }
  99. public void setUpdateTime(java.util.Date updateTime){
  100. this.updateTime = updateTime;
  101. }
  102. public java.util.Date getUpdateTime(){
  103. return this.updateTime;
  104. }
  105. public void setTenantId(String tenantId){
  106. this.tenantId = tenantId;
  107. }
  108. public String getTenantId(){
  109. return this.tenantId;
  110. }
  111. @Override
  112. public String toString() {
  113. return ToStringBuilder.reflectionToString(this);
  114. }
  115. }