Linjiajia
2023-04-24 fcdddf8b9b34f9930bec454b5fffe41c0e33ba3c
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
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;
    }
}