forked from Hackergeek/JavaWebBase
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathEmploy.java
More file actions
87 lines (70 loc) · 1.48 KB
/
Employ.java
File metadata and controls
87 lines (70 loc) · 1.48 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
package entity;
import java.util.Date;
//招聘信息表
public class Employ {
// 招聘编号
private String eid;
// 招聘岗位
private String job;
// 招聘人数
private int count;
// 岗位说明
private String illustration;
// 招聘起始时间
private Date startTime;
// 招聘截止时间
private Date endTime;
public String getEid() {
return eid;
}
public void setEid(String eid) {
this.eid = eid;
}
public String getJob() {
return job;
}
public void setJob(String job) {
this.job = job;
}
public int getCount() {
return count;
}
public void setCount(int count) {
this.count = count;
}
public String getIllustration() {
return illustration;
}
public void setIllustration(String illustration) {
this.illustration = illustration;
}
public Date getStartTime() {
return startTime;
}
public void setStartTime(Date startTime) {
this.startTime = startTime;
}
public Date getEndTime() {
return endTime;
}
public void setEndTime(Date endTime) {
this.endTime = endTime;
}
@Override
public String toString() {
return "Employ [eid=" + eid + ", job=" + job + ", count=" + count
+ ", illustration=" + illustration + ", startTime=" + startTime
+ ", endTime=" + endTime + "]";
}
public Employ(String eid, String job, int count, String illustration,
Date startTime, Date endTime) {
this.eid = eid;
this.job = job;
this.count = count;
this.illustration = illustration;
this.startTime = startTime;
this.endTime = endTime;
}
public Employ() {
}
}