📄 dictionarydto.java
字号:
package edu.yinhe.mis.dto;
import edu.yinhe.mis.util.Filer;
/**
*
* @author sulei
*
*/
public class DictionaryDTO {
/**
* ID号
*/
private String id;
/**
* 名称
*/
private String name;
/**
* 值
*/
private String value;
/**
* 范围
*/
private String scope;
/**
* 父ID
*/
private String pid;
/**
* 创建时间
*/
private String create_time;
/**
* 当前页码
*/
private String currentPage = "";
/**
* 每一个页多少行
*/
private String rowPerPage = "";
public String getId() {
return id;
}
public void setId(String id) {
this.id = id;
}
/**
*
* @return name
*/
public String getName() {
return name;
}
/**
*
* @param name
*/
public void setName(String name) {
this.name = name;
}
/**
*
* @return value
*/
public String getValue() {
return value;
}
/**
*
* @param value
*/
public void setValue(String value) {
this.value = value;
}
/**
*
* @return scope
*/
public String getScope() {
return scope;
}
/**
*
* @param scope
*/
public void setScope(String scope) {
this.scope = scope;
}
/**
*
* @return pid
*/
public String getPid() {
return pid;
}
/**
*
* @param pid
*/
public void setPid(String pid) {
this.pid = pid;
}
/**
*
* @return create_time
*/
public String getCreate_time() {
return create_time;
}
/**
*
* @param create_time
*/
public void setCreate_time(String create_time) {
this.create_time = create_time;
}
/**
*
* @return 当前页码
*/
public String getCurrentPage() {
return currentPage;
}
/**
*
* @param currentPage
*/
public void setCurrentPage(String currentPage) {
this.currentPage = currentPage;
}
/**
*
* @return 每页多少行
*/
public String getRowPerPage() {
return rowPerPage;
}
/**
*
* @param rowPerPage
*/
public void setRowPerPage(String rowPerPage) {
this.rowPerPage = rowPerPage;
}
/**
* 过滤器
*/
public void filer(){
Filer filer = new Filer();
if(name!=null&&!"".equals(name))name = (String)filer.execute(name);
if(value!=null&&!"".equals(value))value = (String)filer.execute(value);
if(scope!=null&&!"".equals(scope))scope = (String)filer.execute(scope);
filer=null;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -