⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 employee_listform.java

📁 这是一个基于大唐电信的一个任务管理模块程序
💻 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 + -