111 lines
2.0 KiB
Plaintext
111 lines
2.0 KiB
Plaintext
|
|
package com.bonus.enroll.beans;
|
|||
|
|
|
|||
|
|
public class EnrollBean{
|
|||
|
|
|
|||
|
|
private String id;
|
|||
|
|
private String name; //姓名
|
|||
|
|
private String idcard; //身份证号
|
|||
|
|
private String times; //考试场次(1、2、3...)
|
|||
|
|
private String specialty; //专业名称
|
|||
|
|
private String delFlag; //是否考完试(0未考试,1考完了)
|
|||
|
|
private String seatNum; //座位号
|
|||
|
|
|
|||
|
|
private String keyWord;
|
|||
|
|
/**
|
|||
|
|
* @return the id
|
|||
|
|
*/
|
|||
|
|
public String getId() {
|
|||
|
|
return id;
|
|||
|
|
}
|
|||
|
|
/**
|
|||
|
|
* @param id the id to set
|
|||
|
|
*/
|
|||
|
|
public void setId(String id) {
|
|||
|
|
this.id = id;
|
|||
|
|
}
|
|||
|
|
/**
|
|||
|
|
* @return the name
|
|||
|
|
*/
|
|||
|
|
public String getName() {
|
|||
|
|
return name;
|
|||
|
|
}
|
|||
|
|
/**
|
|||
|
|
* @param name the name to set
|
|||
|
|
*/
|
|||
|
|
public void setName(String name) {
|
|||
|
|
this.name = name;
|
|||
|
|
}
|
|||
|
|
/**
|
|||
|
|
* @return the idcard
|
|||
|
|
*/
|
|||
|
|
public String getIdcard() {
|
|||
|
|
return idcard;
|
|||
|
|
}
|
|||
|
|
/**
|
|||
|
|
* @param idcard the idcard to set
|
|||
|
|
*/
|
|||
|
|
public void setIdcard(String idcard) {
|
|||
|
|
this.idcard = idcard;
|
|||
|
|
}
|
|||
|
|
/**
|
|||
|
|
* @return the times
|
|||
|
|
*/
|
|||
|
|
public String getTimes() {
|
|||
|
|
return times;
|
|||
|
|
}
|
|||
|
|
/**
|
|||
|
|
* @param times the times to set
|
|||
|
|
*/
|
|||
|
|
public void setTimes(String times) {
|
|||
|
|
this.times = times;
|
|||
|
|
}
|
|||
|
|
/**
|
|||
|
|
* @return the specialty
|
|||
|
|
*/
|
|||
|
|
public String getSpecialty() {
|
|||
|
|
return specialty;
|
|||
|
|
}
|
|||
|
|
/**
|
|||
|
|
* @param specialty the specialty to set
|
|||
|
|
*/
|
|||
|
|
public void setSpecialty(String specialty) {
|
|||
|
|
this.specialty = specialty;
|
|||
|
|
}
|
|||
|
|
/**
|
|||
|
|
* @return the delFlag
|
|||
|
|
*/
|
|||
|
|
public String getDelFlag() {
|
|||
|
|
return delFlag;
|
|||
|
|
}
|
|||
|
|
/**
|
|||
|
|
* @param delFlag the delFlag to set
|
|||
|
|
*/
|
|||
|
|
public void setDelFlag(String delFlag) {
|
|||
|
|
this.delFlag = delFlag;
|
|||
|
|
}
|
|||
|
|
/**
|
|||
|
|
* @return the keyWord
|
|||
|
|
*/
|
|||
|
|
public String getKeyWord() {
|
|||
|
|
return keyWord;
|
|||
|
|
}
|
|||
|
|
/**
|
|||
|
|
* @param keyWord the keyWord to set
|
|||
|
|
*/
|
|||
|
|
public void setKeyWord(String keyWord) {
|
|||
|
|
this.keyWord = keyWord;
|
|||
|
|
}
|
|||
|
|
/**
|
|||
|
|
* @return the seatNum
|
|||
|
|
*/
|
|||
|
|
public String getSeatNum() {
|
|||
|
|
return seatNum;
|
|||
|
|
}
|
|||
|
|
/**
|
|||
|
|
* @param seatNum the seatNum to set
|
|||
|
|
*/
|
|||
|
|
public void setSeatNum(String seatNum) {
|
|||
|
|
this.seatNum = seatNum;
|
|||
|
|
}
|
|||
|
|
}
|