保誠-保戶業務員媒合平台
wayne
2021-11-08 5baaed06e6ef8f2bc29bf36bec6ed86a2f44e1cd
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
package com.pollex.pam.service.dto;
 
import com.pollex.pam.enums.GenderEnum;
 
public class FastQueryConsultantParam {
    private GenderEnum gender;
    private String communicationStyle;
    private Number avgScore;
    private String status;
 
    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 Number getAvgScore() {
        return avgScore;
    }
 
    public void setAvgScore(Number avgScore) {
        this.avgScore = avgScore;
    }
 
    public String getStatus() {
        return status;
    }
 
    public void setStatus(String status) {
        this.status = status;
    }
}