package com.ruoyi.domain;
|
|
import com.baomidou.mybatisplus.annotation.IdType;
|
import com.baomidou.mybatisplus.annotation.TableId;
|
import com.baomidou.mybatisplus.annotation.TableName;
|
import java.io.Serializable;
|
|
/**
|
* <p>
|
* 魅宠主人表
|
* </p>
|
*
|
* @author ojq
|
* @since 2023-03-12
|
*/
|
@TableName("zf_master")
|
public class ZfMaster implements Serializable {
|
|
private static final long serialVersionUID = 1L;
|
|
@TableId(value = "id", type = IdType.AUTO)
|
private Integer id;
|
|
/**
|
* 宠物表id
|
*/
|
private Integer petId;
|
|
/**
|
* 养犬人姓名
|
*/
|
private String name;
|
|
/**
|
* 证件类型
|
*/
|
private String certificateType;
|
|
/**
|
* 证件号码
|
*/
|
private String certificateNo;
|
|
/**
|
* 固定电话
|
*/
|
private String fixedNo;
|
|
/**
|
* 移动电话
|
*/
|
private String phoneNo;
|
|
/**
|
* 拥有犬只数量
|
*/
|
private Integer many;
|
|
/**
|
* 住所详细地址
|
*/
|
private String address;
|
|
/**
|
* 住所性质
|
*/
|
private String property;
|
|
/**
|
* 电子邮件
|
*/
|
private String email;
|
|
|
public Integer getId() {
|
return id;
|
}
|
|
public void setId(Integer id) {
|
this.id = id;
|
}
|
|
public Integer getPetId() {
|
return petId;
|
}
|
|
public void setPetId(Integer 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 Integer getMany() {
|
return many;
|
}
|
|
public void setMany(Integer 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;
|
}
|
|
@Override
|
public String toString() {
|
return "ZfMaster{" +
|
"id=" + id +
|
", petId=" + petId +
|
", name=" + name +
|
", certificateType=" + certificateType +
|
", certificateNo=" + certificateNo +
|
", fixedNo=" + fixedNo +
|
", phoneNo=" + phoneNo +
|
", many=" + many +
|
", address=" + address +
|
", property=" + property +
|
", email=" + email +
|
"}";
|
}
|
}
|