ExaminationBasicDto.java 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  1. package com.keao.edu.user.dto;
  2. import com.keao.edu.user.entity.ExaminationBasic;
  3. import io.swagger.annotations.ApiModelProperty;
  4. import java.math.BigDecimal;
  5. /**
  6. * @Author Joburgess
  7. * @Date 2020.06.27
  8. */
  9. public class ExaminationBasicDto extends ExaminationBasic {
  10. @ApiModelProperty(value = "创建人名称")
  11. private String creatorName;
  12. @ApiModelProperty(value = "合作单位数量")
  13. private Integer organNum;
  14. @ApiModelProperty(value = "总报名人数")
  15. private Integer totalRegistrationStudentNum;
  16. @ApiModelProperty(value = "总缴费金额")
  17. private BigDecimal totalPaymentAmount;
  18. public String getCreatorName() {
  19. return creatorName;
  20. }
  21. public void setCreatorName(String creatorName) {
  22. this.creatorName = creatorName;
  23. }
  24. public Integer getOrganNum() {
  25. return organNum;
  26. }
  27. public void setOrganNum(Integer organNum) {
  28. this.organNum = organNum;
  29. }
  30. public Integer getTotalRegistrationStudentNum() {
  31. return totalRegistrationStudentNum;
  32. }
  33. public void setTotalRegistrationStudentNum(Integer totalRegistrationStudentNum) {
  34. this.totalRegistrationStudentNum = totalRegistrationStudentNum;
  35. }
  36. public BigDecimal getTotalPaymentAmount() {
  37. return totalPaymentAmount;
  38. }
  39. public void setTotalPaymentAmount(BigDecimal totalPaymentAmount) {
  40. this.totalPaymentAmount = totalPaymentAmount;
  41. }
  42. }