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;
|
}
|
|
}
|