|
@@ -1,14 +1,61 @@
|
|
|
package com.keao.edu.user.dto;
|
|
|
|
|
|
-import com.keao.edu.user.entity.ExamRegistration;
|
|
|
+import com.keao.edu.user.enums.StudentRegistrationStatusEnum;
|
|
|
import io.swagger.annotations.ApiModelProperty;
|
|
|
|
|
|
-public class ExamRegistrationDto extends ExamRegistration {
|
|
|
+import java.math.BigDecimal;
|
|
|
|
|
|
- @ApiModelProperty(value = "学员姓名")
|
|
|
- private String studentName;
|
|
|
+public class ExamRegistrationDto{
|
|
|
|
|
|
- @ApiModelProperty(value = "考试项目")
|
|
|
+ @ApiModelProperty(value = "报名编号")
|
|
|
+ private Long id;
|
|
|
+
|
|
|
+ @ApiModelProperty(value = "考级项目编号")
|
|
|
+ private Long examinationBasicId;
|
|
|
+
|
|
|
+ @ApiModelProperty(value = "专业编号")
|
|
|
+ private Integer subjectId;
|
|
|
+
|
|
|
+ @ApiModelProperty(value = "报考级别")
|
|
|
+ private Integer level;
|
|
|
+
|
|
|
+ @ApiModelProperty(value = "考级费用")
|
|
|
+ private BigDecimal levelFee;
|
|
|
+
|
|
|
+ @ApiModelProperty(value = "乐理级别")
|
|
|
+ private Integer examMusicTheoryLevel;
|
|
|
+
|
|
|
+ @ApiModelProperty(value = "乐理考级费用")
|
|
|
+ private BigDecimal theoryLevelFee;
|
|
|
+
|
|
|
+ @ApiModelProperty(value = "考试内容")
|
|
|
+ private String songJson;
|
|
|
+
|
|
|
+ @ApiModelProperty(value = "上次报考级别")
|
|
|
+ private Integer lastExamLevel;
|
|
|
+
|
|
|
+ @ApiModelProperty(value = "上次报考证书")
|
|
|
+ private String lastExamCertificateUrl;
|
|
|
+
|
|
|
+ @ApiModelProperty(value = "上次乐理级别")
|
|
|
+ private Integer lastMusicTheoryLevel;
|
|
|
+
|
|
|
+ @ApiModelProperty(value = "上次乐理证书")
|
|
|
+ private String lastMusicTheoryCertificateUrl;
|
|
|
+
|
|
|
+ @ApiModelProperty(value = "证件号")
|
|
|
+ private String cardNo;
|
|
|
+
|
|
|
+ @ApiModelProperty(value = "报名状态(缴费状态)")
|
|
|
+ private StudentRegistrationStatusEnum status;
|
|
|
+
|
|
|
+ @ApiModelProperty(value = "备注")
|
|
|
+ private String memo;
|
|
|
+
|
|
|
+ @ApiModelProperty(value = "订单编号")
|
|
|
+ private String paymentOrderNo;
|
|
|
+
|
|
|
+ @ApiModelProperty(value = "考试项目名称")
|
|
|
private String examBaseName;
|
|
|
|
|
|
@ApiModelProperty(value = "考试专业")
|
|
@@ -26,6 +73,126 @@ public class ExamRegistrationDto extends ExamRegistration {
|
|
|
@ApiModelProperty(value = "预计考试结束时间")
|
|
|
private String examEndTime;
|
|
|
|
|
|
+ public Long getId() {
|
|
|
+ return id;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setId(Long id) {
|
|
|
+ this.id = id;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Long getExaminationBasicId() {
|
|
|
+ return examinationBasicId;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setExaminationBasicId(Long examinationBasicId) {
|
|
|
+ this.examinationBasicId = examinationBasicId;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Integer getSubjectId() {
|
|
|
+ return subjectId;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setSubjectId(Integer subjectId) {
|
|
|
+ this.subjectId = subjectId;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Integer getLevel() {
|
|
|
+ return level;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setLevel(Integer level) {
|
|
|
+ this.level = level;
|
|
|
+ }
|
|
|
+
|
|
|
+ public BigDecimal getLevelFee() {
|
|
|
+ return levelFee;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setLevelFee(BigDecimal levelFee) {
|
|
|
+ this.levelFee = levelFee;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Integer getExamMusicTheoryLevel() {
|
|
|
+ return examMusicTheoryLevel;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setExamMusicTheoryLevel(Integer examMusicTheoryLevel) {
|
|
|
+ this.examMusicTheoryLevel = examMusicTheoryLevel;
|
|
|
+ }
|
|
|
+
|
|
|
+ public BigDecimal getTheoryLevelFee() {
|
|
|
+ return theoryLevelFee;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setTheoryLevelFee(BigDecimal theoryLevelFee) {
|
|
|
+ this.theoryLevelFee = theoryLevelFee;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getSongJson() {
|
|
|
+ return songJson;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setSongJson(String songJson) {
|
|
|
+ this.songJson = songJson;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Integer getLastExamLevel() {
|
|
|
+ return lastExamLevel;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setLastExamLevel(Integer lastExamLevel) {
|
|
|
+ this.lastExamLevel = lastExamLevel;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getLastExamCertificateUrl() {
|
|
|
+ return lastExamCertificateUrl;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setLastExamCertificateUrl(String lastExamCertificateUrl) {
|
|
|
+ this.lastExamCertificateUrl = lastExamCertificateUrl;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Integer getLastMusicTheoryLevel() {
|
|
|
+ return lastMusicTheoryLevel;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setLastMusicTheoryLevel(Integer lastMusicTheoryLevel) {
|
|
|
+ this.lastMusicTheoryLevel = lastMusicTheoryLevel;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getLastMusicTheoryCertificateUrl() {
|
|
|
+ return lastMusicTheoryCertificateUrl;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setLastMusicTheoryCertificateUrl(String lastMusicTheoryCertificateUrl) {
|
|
|
+ this.lastMusicTheoryCertificateUrl = lastMusicTheoryCertificateUrl;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getCardNo() {
|
|
|
+ return cardNo;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setCardNo(String cardNo) {
|
|
|
+ this.cardNo = cardNo;
|
|
|
+ }
|
|
|
+
|
|
|
+ public StudentRegistrationStatusEnum getStatus() {
|
|
|
+ return status;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setStatus(StudentRegistrationStatusEnum status) {
|
|
|
+ this.status = status;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getMemo() {
|
|
|
+ return memo;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setMemo(String memo) {
|
|
|
+ this.memo = memo;
|
|
|
+ }
|
|
|
+
|
|
|
public String getExamBaseName() {
|
|
|
return examBaseName;
|
|
|
}
|
|
@@ -74,11 +241,11 @@ public class ExamRegistrationDto extends ExamRegistration {
|
|
|
this.examEndTime = examEndTime;
|
|
|
}
|
|
|
|
|
|
- public String getStudentName() {
|
|
|
- return studentName;
|
|
|
+ public String getPaymentOrderNo() {
|
|
|
+ return paymentOrderNo;
|
|
|
}
|
|
|
|
|
|
- public void setStudentName(String studentName) {
|
|
|
- this.studentName = studentName;
|
|
|
+ public void setPaymentOrderNo(String paymentOrderNo) {
|
|
|
+ this.paymentOrderNo = paymentOrderNo;
|
|
|
}
|
|
|
}
|