📄 informationquerybean.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 + -