personcondition.java
来自「本源码为教学管理信息系统」· Java 代码 · 共 52 行
JAVA
52 行
package com.wygl.xtgl.condition;
import com.wygl.page.Condition;
public class PersonCondition extends Condition {
private String EmployeeId;/** * 唯一标识 */
private String name;//姓名
private String dwdm;//单位代码
public PersonCondition(){
super();
hqlString = "from Employee as empl where (isNull(empl.department.dwdm,' ') like ?) and (isNull(empl.name,' ') like ?)";
dwdm="%";name="%";
}
public String getDwdm() {
return dwdm;
}
public void setDwdm(String dwdm) {
this.dwdm = dwdm;
}
public String getEmployeeId() {
return EmployeeId;
}
public void setEmployeeId(String employeeId) {
EmployeeId = employeeId;
}
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?