📄 employee_listform.java
字号:
package com.datang.struts.form;
import java.util.ArrayList;
import java.util.List;
import org.apache.struts.action.ActionForm;
import com.datang.struts.dto.TangEmployee;
public class Employee_listForm extends ActionForm {
private List list = new ArrayList();
private List listcheck = new ArrayList();
private int currentPage = 1;
private int size = 5;
private String content;
private TangEmployee oneemployee;
public String getContent() {
return content;
}
public void setContent(String content) {
this.content = content;
}
public int getCurrentPage() {
return currentPage;
}
public void setCurrentPage(int currentPage) {
this.currentPage = currentPage;
}
public List getList() {
return list;
}
public void setList(List list) {
this.list = list;
}
public int getSize() {
return size;
}
public void setSize(int size) {
this.size = size;
}
public List getListcheck() {
return listcheck;
}
public void setListcheck(List listcheck) {
this.listcheck = listcheck;
}
public TangEmployee getOneemployee() {
return oneemployee;
}
public void setOneemployee(TangEmployee oneemployee) {
this.oneemployee = oneemployee;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -