| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149 |
- package com.keao.edu.user.dto;
- import io.swagger.annotations.ApiModelProperty;
- public class ExamCertificationDto{
- @ApiModelProperty(value = "报名编号")
- private Long examRegistrationId;
- @ApiModelProperty(value = "准考证号")
- private String cardNo;
- @ApiModelProperty(value = "姓名")
- private String realName;
- @ApiModelProperty(value = "性别")
- private Integer gender;
- @ApiModelProperty(value = "科目")
- private String subjectName;
- @ApiModelProperty(value = "科目")
- private Integer subjectId;
- @ApiModelProperty(value = "学员编号")
- private Integer studentId;
- @ApiModelProperty(value = "学员确认状态")
- private Integer confirmStatus;
- @ApiModelProperty(value = "级别")
- private Integer level;
- @ApiModelProperty(value = "考试时间")
- private String examTime;
- @ApiModelProperty(value = "考试地点")
- private String examAddress;
- @ApiModelProperty(value = "证件照")
- private String certificatePhoto;
- @ApiModelProperty(value = "考试内容")
- private String songJson;
- public Integer getConfirmStatus() {
- return confirmStatus;
- }
- public void setConfirmStatus(Integer confirmStatus) {
- this.confirmStatus = confirmStatus;
- }
- public Integer getStudentId() {
- return studentId;
- }
- public void setStudentId(Integer studentId) {
- this.studentId = studentId;
- }
- public String getSongJson() {
- return songJson;
- }
- public void setSongJson(String songJson) {
- this.songJson = songJson;
- }
- public String getCertificatePhoto() {
- return certificatePhoto;
- }
- public void setCertificatePhoto(String certificatePhoto) {
- this.certificatePhoto = certificatePhoto;
- }
- public Integer getSubjectId() {
- return subjectId;
- }
- public void setSubjectId(Integer subjectId) {
- this.subjectId = subjectId;
- }
- public Long getExamRegistrationId() {
- return examRegistrationId;
- }
- public void setExamRegistrationId(Long examRegistrationId) {
- this.examRegistrationId = examRegistrationId;
- }
- public String getCardNo() {
- return cardNo;
- }
- public void setCardNo(String cardNo) {
- this.cardNo = cardNo;
- }
- public String getRealName() {
- return realName;
- }
- public void setRealName(String realName) {
- this.realName = realName;
- }
- public Integer getGender() {
- return gender;
- }
- public void setGender(Integer gender) {
- this.gender = gender;
- }
- public String getSubjectName() {
- return subjectName;
- }
- public void setSubjectName(String subjectName) {
- this.subjectName = subjectName;
- }
- public Integer getLevel() {
- return level;
- }
- public void setLevel(Integer level) {
- this.level = level;
- }
- public String getExamTime() {
- return examTime;
- }
- public void setExamTime(String examTime) {
- this.examTime = examTime;
- }
- public String getExamAddress() {
- return examAddress;
- }
- public void setExamAddress(String examAddress) {
- this.examAddress = examAddress;
- }
- }
|