ExamOrganRegistDto.java 1.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. package com.keao.edu.user.dto;
  2. import io.swagger.annotations.ApiModelProperty;
  3. import java.math.BigDecimal;
  4. /**
  5. * @Author Joburgess
  6. * @Date 2020.06.27
  7. */
  8. public class ExamOrganRegistDto {
  9. private Integer examId;
  10. @ApiModelProperty(value = "总报名人数")
  11. private Integer totalRegistrationStudentNum;
  12. @ApiModelProperty(value = "总缴费金额")
  13. private BigDecimal totalPaymentAmount;
  14. public Integer getExamId() {
  15. return examId;
  16. }
  17. public void setExamId(Integer examId) {
  18. this.examId = examId;
  19. }
  20. public Integer getTotalRegistrationStudentNum() {
  21. return totalRegistrationStudentNum;
  22. }
  23. public void setTotalRegistrationStudentNum(Integer totalRegistrationStudentNum) {
  24. this.totalRegistrationStudentNum = totalRegistrationStudentNum;
  25. }
  26. public BigDecimal getTotalPaymentAmount() {
  27. return totalPaymentAmount;
  28. }
  29. public void setTotalPaymentAmount(BigDecimal totalPaymentAmount) {
  30. this.totalPaymentAmount = totalPaymentAmount;
  31. }
  32. }