ソースを参照

删除 'src/PageBean.java'

1801010606 6 年 前
コミット
02b453932a
1 ファイル変更0 行追加91 行削除
  1. 0 91
      src/PageBean.java

+ 0 - 91
src/PageBean.java

@@ -1,91 +0,0 @@
-package com.person.domain;
-
-import java.util.List;
-
-public class PageBean {
-	
-	//当前页
-	private int currentPage;
-	//总记录数
-	private int totalCount;
-	//总页数
-	private int totalPage;
-	//每页显示记录数
-	private int pageSize;
-	//开始位置
-	private int begin;
-	//每页数据list集合
-	private List<Person> list;
-	//查询用户姓名
-	private String realname;
-	//查询性别
-	private String gender;
-	//查询学历
-	private String education;
-	//查询简历
-	private String resume;
-	
-	
-	public String getRealname() {
-		return realname;
-	}
-	public void setRealname(String realname) {
-		this.realname = realname;
-	}
-	public String getGender() {
-		return gender;
-	}
-	public void setGender(String gender) {
-		this.gender = gender;
-	}
-	public String getEducation() {
-		return education;
-	}
-	public void setEducation(String education) {
-		this.education = education;
-	}
-	public String getResume() {
-		return resume;
-	}
-	public void setResume(String resume) {
-		this.resume = resume;
-	}
-	public int getCurrentPage() {
-		return currentPage;
-	}
-	public void setCurrentPage(int currentPage) {
-		this.currentPage = currentPage;
-	}
-	public int getTotalCount() {
-		return totalCount;
-	}
-	public void setTotalCount(int totalCount) {
-		this.totalCount = totalCount;
-	}
-	public int getTotalPage() {
-		return totalPage;
-	}
-	public void setTotalPage(int totalPage) {
-		this.totalPage = totalPage;
-	}
-	public int getPageSize() {
-		return pageSize;
-	}
-	public void setPageSize(int pageSize) {
-		this.pageSize = pageSize;
-	}
-	public int getBegin() {
-		return begin;
-	}
-	public void setBegin(int begin) {
-		this.begin = begin;
-	}
-	public List<Person> getList() {
-		return list;
-	}
-	public void setList(List<Person> list) {
-		this.list = list;
-	}
-	
-	
-}