📄 checkinfoform.java
字号:
/**
*
*/
package edu.yinhe.mis.control;
import javax.servlet.http.HttpServletRequest;
import org.apache.struts.action.ActionErrors;
import org.apache.struts.action.ActionForm;
import org.apache.struts.action.ActionMapping;
/**
* @author 孙文
*
*/
public class CheckInfoForm extends ActionForm{
private Integer check_id=null; //逻辑考场号
private Integer count=null; //人数
private String object_name=null; //考试科目名
private String check_begintime=null; //开始考试时间
private String check_finishtime=null; //结束考试时间
private String testPaper_no=null; //试卷ID
/**
* Method validate
* @param mapping
* @param request
* @return ActionErrors
*/
public ActionErrors validate(ActionMapping mapping,
HttpServletRequest request) {
// TODO Auto-generated method stub
return null;
}
/**
* Method reset
* @param mapping
* @param request
*/
public void reset(ActionMapping mapping, HttpServletRequest request) {
// TODO Auto-generated method stub
}
public Integer getCheck_id() {
return check_id;
}
public void setCheck_id(Integer check_id) {
this.check_id = check_id;
}
public Integer getCount() {
return count;
}
public void setCount(Integer count) {
this.count = count;
}
public String getObject_name() {
return object_name;
}
public void setObject_name(String object_name) {
this.object_name = object_name;
}
public String getCheck_begintime() {
return check_begintime;
}
public void setCheck_begintime(String check_begintime) {
this.check_begintime = check_begintime;
}
public String getCheck_finishtime() {
return check_finishtime;
}
public void setCheck_finishtime(String check_finishtime) {
this.check_finishtime = check_finishtime;
}
public String getTestPaper_no() {
return testPaper_no;
}
public void setTestPaper_no(String testPaper_no) {
this.testPaper_no = testPaper_no;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -