Linjiajia
2023-10-07 31b7700b976a46901f67c5d7a00281ca4745fc9f
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
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
package com.application.zhangshi_app_android.bean;
 
/**
 * @author Ljj
 * @date 2023.05.23. 15:20
 * @desc 宠物主人
 */
public class PetOwnerBean {
    //id
    private long id;
    //宠物表Id
    private String petId;
    //宠物主人名称
    private String name;
    //证件类型
    private String certificateType;
    //证件号码
    private String certificateNo;
    //固定号码
    private String fixedNo;
    //移动号码
    private String phoneNo;
    //拥有数量
    private int many;
    //住所详细地址
    private String address;
    //住所性质
    private String property;
    //电子邮件
    private String email;
 
    public long getId() {
        return id;
    }
 
    public void setId(long id) {
        this.id = id;
    }
 
    public String getPetId() {
        return petId;
    }
 
    public void setPetId(String petId) {
        this.petId = petId;
    }
 
    public String getName() {
        return name;
    }
 
    public void setName(String name) {
        this.name = name;
    }
 
    public String getCertificateType() {
        return certificateType;
    }
 
    public void setCertificateType(String certificateType) {
        this.certificateType = certificateType;
    }
 
    public String getCertificateNo() {
        return certificateNo;
    }
 
    public void setCertificateNo(String certificateNo) {
        this.certificateNo = certificateNo;
    }
 
    public String getFixedNo() {
        return fixedNo;
    }
 
    public void setFixedNo(String fixedNo) {
        this.fixedNo = fixedNo;
    }
 
    public String getPhoneNo() {
        return phoneNo;
    }
 
    public void setPhoneNo(String phoneNo) {
        this.phoneNo = phoneNo;
    }
 
    public int getMany() {
        return many;
    }
 
    public void setMany(int many) {
        this.many = many;
    }
 
    public String getAddress() {
        return address;
    }
 
    public void setAddress(String address) {
        this.address = address;
    }
 
    public String getProperty() {
        return property;
    }
 
    public void setProperty(String property) {
        this.property = property;
    }
 
    public String getEmail() {
        return email;
    }
 
    public void setEmail(String email) {
        this.email = email;
    }
}