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