📄 personcondition.java
字号:
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 + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -