package com.application.zhangshi_app_android.bean;
|
|
/**
|
* @author Ljj
|
* @date 2023.04.11. 14:13
|
* @desc 首页成员信息
|
*/
|
public class HomeMemberBean {
|
private String generation;
|
private String name;
|
private String gender;
|
private String url;
|
private String birthday;
|
private String deathDay;
|
private String phone;
|
private String company;
|
private String spouse;
|
|
public HomeMemberBean(String generation, String name, String gender, String url, String birthday, String deathDay, String phone, String company, String spouse) {
|
this.generation = generation;
|
this.name = name;
|
this.gender = gender;
|
this.url = url;
|
this.birthday = birthday;
|
this.deathDay = deathDay;
|
this.phone = phone;
|
this.company = company;
|
this.spouse = spouse;
|
}
|
|
public String getGeneration() {
|
return generation;
|
}
|
|
public void setGeneration(String generation) {
|
this.generation = generation;
|
}
|
|
public String getName() {
|
return name;
|
}
|
|
public void setName(String name) {
|
this.name = name;
|
}
|
|
public String getGender() {
|
return gender;
|
}
|
|
public void setGender(String gender) {
|
this.gender = gender;
|
}
|
|
public String getUrl() {
|
return url;
|
}
|
|
public void setUrl(String url) {
|
this.url = url;
|
}
|
|
public String getBirthday() {
|
return birthday;
|
}
|
|
public void setBirthday(String birthday) {
|
this.birthday = birthday;
|
}
|
|
public String getDeathDay() {
|
return deathDay;
|
}
|
|
public void setDeathDay(String deathDay) {
|
this.deathDay = deathDay;
|
}
|
|
public String getPhone() {
|
return phone;
|
}
|
|
public void setPhone(String phone) {
|
this.phone = phone;
|
}
|
|
public String getCompany() {
|
return company;
|
}
|
|
public void setCompany(String company) {
|
this.company = company;
|
}
|
|
public String getSpouse() {
|
return spouse;
|
}
|
|
public void setSpouse(String spouse) {
|
this.spouse = spouse;
|
}
|
}
|