保誠-保戶業務員媒合平台
wayne
2022-02-17 a3716f72066d25d745f4d5103ff23a553c3e102b
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
package com.pollex.pam.service.dto;
 
import java.util.List;
 
import com.pollex.pam.enums.GenderEnum;
 
public class ConsultantEditDTO {
    
//    private Long id;
    private String name;
    private List<String> expertise;
    private String title;
    private String role;
    private String serveArea;
    private GenderEnum gender;
    private String phoneNumber;
    private String companyAddress;
    private Long seniorityYear;
    private Long seniorityMonth;
    private String concept;
    private String experiences;
    private String awards;
    private String communicationStyle;
    private String photoBase64;
    private String photoFileName;
    private String agentNo;
    
//    public Long getId() {
//        return id;
//    }
//    public void setId(Long id) {
//        this.id = id;
//    }
    public String getName() {
        return name;
    }
    public void setName(String name) {
        this.name = name;
    }
    public List<String> getExpertise() {
        return expertise;
    }
    public void setExpertise(List<String> expertise) {
        this.expertise = expertise;
    }
    public String getTitle() {
        return title;
    }
    public void setTitle(String title) {
        this.title = title;
    }
    public String getRole() {
        return role;
    }
    public void setRole(String role) {
        this.role = role;
    }
    public String getServeArea() {
        return serveArea;
    }
    public void setServeArea(String serveArea) {
        this.serveArea = serveArea;
    }
    public GenderEnum getGender() {
        return gender;
    }
    public void setGender(GenderEnum gender) {
        this.gender = gender;
    }
    public String getPhoneNumber() {
        return phoneNumber;
    }
    public void setPhoneNumber(String phoneNumber) {
        this.phoneNumber = phoneNumber;
    }
    public String getCompanyAddress() {
        return companyAddress;
    }
    public void setCompanyAddress(String companyAddress) {
        this.companyAddress = companyAddress;
    }
    public Long getSeniorityYear() {
        return seniorityYear;
    }
    public void setSeniorityYear(Long seniorityYear) {
        this.seniorityYear = seniorityYear;
    }
    public Long getSeniorityMonth() {
        return seniorityMonth;
    }
    public void setSeniorityMonth(Long seniorityMonth) {
        this.seniorityMonth = seniorityMonth;
    }
    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 String getCommunicationStyle() {
        return communicationStyle;
    }
    public void setCommunicationStyle(String communicationStyle) {
        this.communicationStyle = communicationStyle;
    }
    public String getPhotoBase64() {
        return photoBase64;
    }
    public void setPhotoBase64(String photoBase64) {
        this.photoBase64 = photoBase64;
    }
    public String getPhotoFileName() {
        return "consultant_"+this.getAgentNo()+".jpg";
    }
    public String getAgentNo() {
        return agentNo;
    }
    public void setAgentNo(String agentNo) {
        this.agentNo = agentNo;
    }
    
    
    
    
    
    
}