EmployeeIndex.java
1.49 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
package com.xiniunet.web.home.domain;
import com.xiniunet.master.domain.humanresource.EmployeeDetail;
/**
 * Created by DEV003 on 2014/10/9.
 */
public class EmployeeIndex extends EmployeeDetail {
    /**
     * 年龄,
     */
    private Long age;
    /**
     * 司龄,
     */
    private Double workAge;
    /**
     * 组织名称
     */
    private  String   organizationName;
    /**
     * 职位名称,
     */
    private  String   jobName;
    /**
     * 主管,
     */
    private  String   ownerName;
    /**
     * 照片地址
     */
    private String photoUrl;
    public Long getAge() {
        return age;
    }
    public void setAge(Long age) {
        this.age = age;
    }
    public Double getWorkAge() {
        return workAge;
    }
    public void setWorkAge(Double workAge) {
        this.workAge = workAge;
    }
    public String getOrganizationName() {
        return organizationName;
    }
    public void setOrganizationName(String organizationName) {
        this.organizationName = organizationName;
    }
    public String getJobName() {
        return jobName;
    }
    public void setJobName(String jobName) {
        this.jobName = jobName;
    }
    public String getOwnerName() {
        return ownerName;
    }
    public void setOwnerName(String ownerName) {
        this.ownerName = ownerName;
    }
    public String getPhotoUrl() {
        return photoUrl;
    }
    public void setPhotoUrl(String photoUrl) {
        this.photoUrl = photoUrl;
    }
}