xx
孔祥富
2021-03-14 1d73bcf0d8f48031d258c55d5843c42eee6271a0
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
package cc.mrbird.febs.server.hr.po;
 
import java.io.Serializable;
 
public class User implements Serializable{
 
    private static final long serialVersionUID = -9180229310895087286L;
 
    private String name; // 姓名
    
    private String sex; // 性别
    
    private Integer age; // 年龄
    
    private String phoneNo; // 手机号
    
    private String address; // 地址
    
    private String hobby; // 爱好
    
    public User(String name, String sex, Integer age, String phoneNo, String address, String hobby) {
        super();
        this.name = name;
        this.sex = sex;
        this.age = age;
        this.phoneNo = phoneNo;
        this.address = address;
        this.hobby = hobby;
    }
 
    public String getName() {
        return name;
    }
 
    public void setName(String name) {
        this.name = name;
    }
 
    public String getSex() {
        return sex;
    }
 
    public void setSex(String sex) {
        this.sex = sex;
    }
 
    public Integer getAge() {
        return age;
    }
 
    public void setAge(Integer age) {
        this.age = age;
    }
 
    public String getPhoneNo() {
        return phoneNo;
    }
 
    public void setPhoneNo(String phoneNo) {
        this.phoneNo = phoneNo;
    }
 
    public String getAddress() {
        return address;
    }
 
    public void setAddress(String address) {
        this.address = address;
    }
 
    public String getHobby() {
        return hobby;
    }
 
    public void setHobby(String hobby) {
        this.hobby = hobby;
    }
 
    @Override
    public String toString() {
        return "User [name=" + name + ", sex=" + sex + ", age=" + age + ", phoneNo=" + phoneNo + ", address=" + address
                + ", hobby=" + hobby + "]";
    }
}