⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 informationquerybean.java

📁 这个是完整的wap项目的源码 开发语言 Java 系统架构 Struts + hibernate + spring 数据库 Mysql5.0 应用服务器Tomcat5.0 开发工具 MyEc
💻 JAVA
字号:
package com.longtime.wap.module.business.common;

/**
 * 信息搜索项
 * 
 * @author gengb
 * @date Nov 15, 2007
 */
public class InformationQueryBean{
	private String searchValue;
	private String fromDate;
	private String toDate;
	private Integer isPub;
	
	/**
	 * 获取是否发布
	 * 
	 * @return 是否发布
	 */
	public Integer getIsPub() {
		return isPub;
	}
	
	/**
	 * 设置是否发布
	 * 
	 * @param isPub
	 * 			是否发布
	 */
	public void setIsPub(Integer isPub) {
		this.isPub = isPub;
	}
	
	/**
	 * 获取搜索的信息内容
	 * 
	 * @return 搜索的信息内容
	 */
	public String getSearchValue() {
		return searchValue;
	}
	
	/**
	 * 设置搜索的信息内容
	 * 
	 * @param searchValue
	 * 				搜索的信息内容
	 */
	public void setSearchValue(String searchValue) {
		this.searchValue = searchValue;
	}
	
	/**
	 * 获取搜索的截止日期
	 * 
	 * @return 搜索的截止日期
	 */
	public String getToDate() {
		return toDate;
	}
	
	/**
	 * 设置搜索的截止日期
	 * 
	 * @param toDate
	 * 			搜索的截止日期
	 */
	public void setToDate(String toDate) {
		this.toDate = toDate;
	}
	
	/**
	 * 获取搜索的起始日期
	 * 
	 * @return 搜索的起始日期
	 */
	public String getFromDate() {
		return fromDate;
	}
	
	/**
	 * 设置搜索的起始日期
	 * 
	 * @param fromDate
	 * 				搜素的起始日期
	 */
	public void setFromDate(String fromDate) {
		this.fromDate = fromDate;
	}
}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -