Преглед изворни кода

上传文件至 'src/com/person/domain'

1801010606 пре 6 година
родитељ
комит
8aae72674a
2 измењених фајлова са 182 додато и 0 уклоњено
  1. 91 0
      src/com/person/domain/PageBean.java
  2. 91 0
      src/com/person/domain/Person.java

+ 91 - 0
src/com/person/domain/PageBean.java

@@ -0,0 +1,91 @@
+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;
+	}
+	
+	
+}

+ 91 - 0
src/com/person/domain/Person.java

@@ -0,0 +1,91 @@
+package com.person.domain;
+
+public class Person {
+	private String pid;
+	private String username;
+	private String password;
+	private String realname;
+	private String gender;
+	private String education;
+	private String love;
+	private String birthday;
+	private String phone;
+	private String resume;
+	private String rmark;
+	private int id;
+	
+	public int getId() {
+		return id;
+	}
+	public void setId(int id) {
+		this.id = id;
+	}
+	public String getPid() {
+		return pid;
+	}
+	public void setPid(String pid) {
+		this.pid = pid;
+	}
+	public String getUsername() {
+		return username;
+	}
+	public void setUsername(String username) {
+		this.username = username;
+	}
+	public String getPassword() {
+		return password;
+	}
+	public void setPassword(String password) {
+		this.password = password;
+	}
+	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 getLove() {
+		return love;
+	}
+	public void setLove(String love) {
+		this.love = love;
+	}
+	public String getBirthday() {
+		return birthday;
+	}
+	public void setBirthday(String birthday) {
+		this.birthday = birthday;
+	}
+	public String getPhone() {
+		return phone;
+	}
+	public void setPhone(String phone) {
+		this.phone = phone;
+	}
+	public String getResume() {
+		return resume;
+	}
+	public void setResume(String resume) {
+		this.resume = resume;
+	}
+	public String getRmark() {
+		return rmark;
+	}
+	public void setRmark(String rmark) {
+		this.rmark = rmark;
+	}
+	  
+	
+}