智慧保安后台管理-外网
Administrator
2021-08-31 08363052cecb30230a2c8b3eba791ca8d1be00a5
src/main/java/org/springblade/modules/exam/vo/ExamPaperVO.java
@@ -5,12 +5,35 @@
import org.springblade.modules.exam.entity.ExamPaper;
/**
 * 通知公告视图类
 * 考试类
 *
 * @author Chill
 */
@Data
@EqualsAndHashCode(callSuper = true)
public class ExamPaperVO extends ExamPaper {
   /**
    * 考试人员姓名
    */
   private String realName;
   /**
    * 身份证号
    */
   private String idCardNo;
   /**
    * 准考证号
    */
   private String candidateNo;
   /**
    * 性别 1 男  2 女
    */
   private Integer sex;
   /**
    * 考试 id
    */
   private Long applyId;
}