保誠-保戶業務員媒合平台
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
package com.pollex.pam.service.dto;
 
import com.pollex.pam.enums.GenderEnum;
 
import java.util.List;
 
public class ConsultantDTO {
 
    private String name;
    private String agentNo;
    private String role;
    private Float avgScore;
    private List<String> serveArea;
    private Long seniority_year;
    private Long seniority_month;
    private List<String> expertise;
    private GenderEnum gender;
    private String communicationStyle;
 
    public String getName() {
        return name;
    }
 
    public void setName(String name) {
        this.name = name;
    }
 
    public String getAgentNo() {
        return agentNo;
    }
 
    public void setAgentNo(String agentNo) {
        this.agentNo = agentNo;
    }
 
    public String getRole() {
        return role;
    }
 
    public void setRole(String role) {
        this.role = role;
    }
 
    public Float getAvgScore() {
        return avgScore;
    }
 
    public void setAvgScore(Float avgScore) {
        this.avgScore = avgScore;
    }
 
    public List<String> getServeArea() {
        return serveArea;
    }
 
    public void setServeArea(List<String> serveArea) {
        this.serveArea = serveArea;
    }
 
    public Long getSeniority_year() {
        return seniority_year;
    }
 
    public void setSeniority_year(Long seniority_year) {
        this.seniority_year = seniority_year;
    }
 
    public Long getSeniority_month() {
        return seniority_month;
    }
 
    public void setSeniority_month(Long seniority_month) {
        this.seniority_month = seniority_month;
    }
 
    public List<String> getExpertise() {
        return expertise;
    }
 
    public void setExpertise(List<String> expertise) {
        this.expertise = expertise;
    }
 
    public GenderEnum getGender() {
        return gender;
    }
 
    public void setGender(GenderEnum gender) {
        this.gender = gender;
    }
 
    public String getCommunicationStyle() {
        return communicationStyle;
    }
 
    public void setCommunicationStyle(String communicationStyle) {
        this.communicationStyle = communicationStyle;
    }
}