📄 configprimarykeyform.java
字号:
package org.better.hr.web.form;
import java.util.ArrayList;
import org.better.hr.entity.ConfigPrimaryKey;
import org.better.hr.entity.ConfigPrimaryKeyList;
public class ConfigPrimaryKeyForm extends BasicForm {
/**
*
*/
private static final long serialVersionUID = 0L;
private ConfigPrimaryKey item;
private ConfigPrimaryKey condition;
private ArrayList list = new ConfigPrimaryKeyList();
/**
* 构造方法
*
*/
public ConfigPrimaryKeyForm()
{
if(null == this.item)
this.item = new ConfigPrimaryKey();
if(null == this.condition)
this.condition = new ConfigPrimaryKey();
}
public ConfigPrimaryKey getCondition() {
return condition;
}
public void setCondition(ConfigPrimaryKey condition) {
this.condition = condition;
}
public ConfigPrimaryKey getItem() {
return item;
}
public void setItem(ConfigPrimaryKey item) {
this.item = item;
}
public ArrayList getList() {
return list;
}
public void setList(ArrayList list) {
this.list = list;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -