hefeixia
2021-02-18 5b8c95c760840f09910730943b21391e47187315
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
package chat.user;
 
import java.util.List;
 
public class NotifyContentDetail {
 
    private String doctorId;
    private String name;
    private String portrait;
    private String mobile;
    private String roletype;
    private List<String> rejectreason;
    private int gender;
    
    public String getDoctorId() {
        return doctorId;
    }
    
    public void setDoctorId(String doctorId) {
        this.doctorId = doctorId;
    }
    
    public String getName() {
        return name;
    }
    
    public void setName(String name) {
        this.name = name;
    }
    
    public String getPortrait() {
        return portrait;
    }
    
    public void setPortrait(String portrait) {
        this.portrait = portrait;
    }
    
    public String getMobile() {
        return mobile;
    }
    
    public void setMobile(String mobile) {
        this.mobile = mobile;
    }
    
    public String getRoletype() {
        return roletype;
    }
    
    public void setRoletype(String roletype) {
        this.roletype = roletype;
    }
    
    public List<String> getRejectreason() {
        return rejectreason;
    }
 
    public void setRejectreason(List<String> rejectreason) {
        this.rejectreason = rejectreason;
    }
 
    public int getGender() {
        return gender;
    }
    
    public void setGender(int gender) {
        this.gender = gender;
    }
    
}