forked from vector4wang/spring-boot-quick
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathIndustryPosition.java
More file actions
42 lines (35 loc) · 893 Bytes
/
IndustryPosition.java
File metadata and controls
42 lines (35 loc) · 893 Bytes
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
package com.quick.es.entity;
/**
* Created with IDEA
* User: vector
* Data: 2017/6/8
* Time: 16:16
* Description:
*/
public class IndustryPosition {
private String industry; // 行业
private String position; // 职位
public IndustryPosition(String industry, String position) {
this.industry = industry;
this.position = position;
}
@Override
public String toString() {
return "IndustryPosition{" +
"industry='" + industry + '\'' +
", position='" + position + '\'' +
'}';
}
public String getIndustry() {
return industry;
}
public void setIndustry(String industry) {
this.industry = industry;
}
public String getPosition() {
return position;
}
public void setPosition(String position) {
this.position = position;
}
}