package edu.sjtu.infosec.ismp.manager.EM.web.form; import java.util.Date; import org.apache.struts.action.ActionForm; /** * 报表form---事件 * @author Wu Guojie * @date 2009-7-6 * @version 1.0 */ public class ReportEventGroupByForm extends ActionForm { /** * 开始时间 */ private Date startDate; /** * 结束时间 */ private Date endDate; /** * 输出文件类型 */ private Integer outPutFileType; /** * 委办局ID */ private Integer bureauId; public Date getStartDate() { return startDate; } public void setStartDate(Date startDate) { this.startDate = startDate; } public Date getEndDate() { return endDate; } public void setEndDate(Date endDate) { this.endDate = endDate; } public Integer getOutPutFileType() { return outPutFileType; } public void setOutPutFileType(Integer outPutFileType) { this.outPutFileType = outPutFileType; } public Integer getBureauId() { return bureauId; } public void setBureauId(Integer bureauId) { this.bureauId = bureauId; } }