ExamPaymentInfo.java 952 B

123456789101112131415161718192021222324252627282930
  1. package com.keao.edu.user.dto;
  2. import com.keao.edu.user.entity.ExamRegistration;
  3. import com.keao.edu.user.entity.ExamRegistrationPayment;
  4. import io.swagger.annotations.ApiModelProperty;
  5. public class ExamPaymentInfo{
  6. @ApiModelProperty(value = "订单信息")
  7. private ExamRegistrationPayment examRegistrationPayment;
  8. @ApiModelProperty(value = "报名信息")
  9. private ExamRegistrationDto examRegistrationDto;
  10. public ExamRegistrationDto getExamRegistrationDto() {
  11. return examRegistrationDto;
  12. }
  13. public void setExamRegistrationDto(ExamRegistrationDto examRegistrationDto) {
  14. this.examRegistrationDto = examRegistrationDto;
  15. }
  16. public ExamRegistrationPayment getExamRegistrationPayment() {
  17. return examRegistrationPayment;
  18. }
  19. public void setExamRegistrationPayment(ExamRegistrationPayment examRegistrationPayment) {
  20. this.examRegistrationPayment = examRegistrationPayment;
  21. }
  22. }