保誠-保戶業務員媒合平台
wayne
2021-11-24 03a858f2882bedeb5925b65cb045ccbbb1202329
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
package com.pollex.pam.service.dto;
 
import com.fasterxml.jackson.annotation.JsonIgnore;
import com.fasterxml.jackson.annotation.JsonIgnoreProperties;
import com.fasterxml.jackson.annotation.JsonProperty;
 
import java.time.Instant;
import java.util.List;
 
public class ConsultantDetailDTO {
 
    private String name;
    private String agentNo;
    private String role;
    private String image;
    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> expertises;
    private String concept;
    private List<String> experiences;
    private String awards;
 
    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 getImage() {
        return image;
    }
 
    public void setImage(String image) {
        this.image = image;
    }
 
    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> getExpertises() {
        return expertises;
    }
 
    public void setExpertises(List<String> expertises) {
        this.expertises = expertises;
    }
 
    public String getConcept() {
        return concept;
    }
 
    public void setConcept(String concept) {
        this.concept = concept;
    }
 
    public List<String> getExperiences() {
        return experiences;
    }
 
    public void setExperiences(List<String> experiences) {
        this.experiences = experiences;
    }
 
    public String getAwards() {
        return awards;
    }
 
    public void setAwards(String awards) {
        this.awards = awards;
    }
}