保誠-保戶業務員媒合平台
wayne
2022-01-26 6fa4bba623713c396432ba8b863846883d6a1906
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
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
package com.pollex.pam.service.dto;
 
import java.time.Instant;
import java.util.List;
 
import com.pollex.pam.enums.GenderEnum;
 
public class ConsultantDetailDTO {
 
    private String name;
    private String agentNo;
    private String role;
    private String img;
    private Float avgScore;
    private String title;
    private String phoneNumber;
    private String serveArea;
    private String companyAddress;
    private Instant latestLoginTime;
    private String seniority;
    private Number suitability;
    private Number evaluation;
    private List<String> expertise;
    private String concept;
    private String experiences;
    private String awards;
    private GenderEnum gender;
    private String communicationStyle;
    private String email;
 
    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 String getImg() {
        return img;
    }
 
    public void setImg(String img) {
        this.img = img;
    }
 
    public Float getAvgScore() {
        return avgScore;
    }
 
    public void setAvgScore(Float avgScore) {
        this.avgScore = avgScore;
    }
 
    public String getTitle() {
        return title;
    }
 
    public void setTitle(String title) {
        this.title = title;
    }
 
    public String getPhoneNumber() {
        return phoneNumber;
    }
 
    public void setPhoneNumber(String phoneNumber) {
        this.phoneNumber = phoneNumber;
    }
 
    public String getServeArea() {
        return serveArea;
    }
 
    public void setServeArea(String serveArea) {
        this.serveArea = serveArea;
    }
 
    public String getCompanyAddress() {
        return companyAddress;
    }
 
    public void setCompanyAddress(String companyAddress) {
        this.companyAddress = companyAddress;
    }
 
    public Instant getLatestLoginTime() {
        return latestLoginTime;
    }
 
    public void setLatestLoginTime(Instant latestLoginTime) {
        this.latestLoginTime = latestLoginTime;
    }
 
    public String getSeniority() {
        return seniority;
    }
 
    public void setSeniority(String seniority) {
        this.seniority = seniority;
    }
 
    public Number getSuitability() {
        return suitability;
    }
 
    public void setSuitability(Number suitability) {
        this.suitability = suitability;
    }
 
    public Number getEvaluation() {
        return evaluation;
    }
 
    public void setEvaluation(Number evaluation) {
        this.evaluation = evaluation;
    }
 
    public List<String> getExpertise() {
        return expertise;
    }
 
    public void setExpertise(List<String> expertise) {
        this.expertise = expertise;
    }
 
    public String getConcept() {
        return concept;
    }
 
    public void setConcept(String concept) {
        this.concept = concept;
    }
 
    public String getExperiences() {
        return experiences;
    }
 
    public void setExperiences(String experiences) {
        this.experiences = experiences;
    }
 
    public String getAwards() {
        return awards;
    }
 
    public void setAwards(String awards) {
        this.awards = awards;
    }
 
    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;
    }
 
    public String getEmail() {
        return email;
    }
 
    public void setEmail(String email) {
        this.email = email;
    }
    
    
    
}