CompanySearchBody.java
3.2 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
package com.hh.xuetubao.bean;
import java.io.Serializable;
public class CompanySearchBody implements Serializable {
private int Page; //页码
private int PageSize; //每页数量
private String ProvinceId; //省份id
private String CityId; //城市id
private String SearchName; //查询名称
private String CompanyIndustry; //行业领域
private String CompanyNature; //公司性质
private String CompanySize; //公司规模
private String JobFunction;//岗位职能
private String Education;//要求
private String Exprience;//工作经验要求
private String JobNature;
public String getJobNature() {
return JobNature;
}
public void setJobNature(String jobNature) {
JobNature = jobNature;
}
public String getEducation() {
return Education;
}
public void setEducation(String education) {
Education = education;
}
public String getExprience() {
return Exprience;
}
public void setExprience(String exprience) {
Exprience = exprience;
}
public String getJobFunction() {
return JobFunction;
}
public void setJobFunction(String jobFunction) {
JobFunction = jobFunction;
}
public int getPage() {
return Page;
}
public void setPage(int page) {
Page = page;
}
public int getPageSize() {
return PageSize;
}
public void setPageSize(int pageSize) {
PageSize = pageSize;
}
public String getProvinceId() {
return ProvinceId;
}
public void setProvinceId(String provinceId) {
ProvinceId = provinceId;
}
public String getCityId() {
return CityId;
}
public void setCityId(String cityId) {
CityId = cityId;
}
public String getSearchName() {
return SearchName;
}
public void setSearchName(String searchName) {
SearchName = searchName;
}
public String getCompanyIndustry() {
return CompanyIndustry;
}
public void setCompanyIndustry(String companyIndustry) {
CompanyIndustry = companyIndustry;
}
public String getCompanyNature() {
return CompanyNature;
}
public void setCompanyNature(String companyNature) {
CompanyNature = companyNature;
}
public String getCompanySize() {
return CompanySize;
}
public void setCompanySize(String companySize) {
CompanySize = companySize;
}
@Override
public String toString() {
return "CompanySearchBody{" +
"Page=" + Page +
", PageSize=" + PageSize +
", ProvinceId='" + ProvinceId + '\'' +
", CityId='" + CityId + '\'' +
", SearchName='" + SearchName + '\'' +
", CompanyIndustry='" + CompanyIndustry + '\'' +
", CompanyNature='" + CompanyNature + '\'' +
", CompanySize='" + CompanySize + '\'' +
", JobFunction='" + JobFunction + '\'' +
", Education='" + Education + '\'' +
", Exprience='" + Exprience + '\'' +
", JobNature='" + JobNature + '\'' +
'}';
}
}