| | |
| | | import com.baomidou.mybatisplus.annotation.IdType; |
| | | import com.baomidou.mybatisplus.annotation.TableId; |
| | | import com.baomidou.mybatisplus.annotation.TableName; |
| | | import com.ruoyi.common.annotation.Excel; |
| | | import lombok.Data; |
| | | |
| | | import java.io.Serializable; |
| | | |
| | | /** |
| | |
| | | * @since 2023-03-12 |
| | | */ |
| | | @TableName("zf_master") |
| | | @Data |
| | | public class ZfMaster implements Serializable { |
| | | |
| | | private static final long serialVersionUID = 1L; |
| | | |
| | | @TableId(value = "id", type = IdType.AUTO) |
| | | private Integer id; |
| | | private Long id; |
| | | |
| | | /** |
| | | * 宠物表id |
| | | * 宠物id |
| | | */ |
| | | private Integer petId; |
| | | private Long petId; |
| | | |
| | | /** |
| | | * 养犬人姓名 |
| | | */ |
| | | @Excel(name = "name") |
| | | private String name; |
| | | |
| | | /** |
| | | * 证件类型 |
| | | */ |
| | | @Excel(name="证件类型") |
| | | private String certificateType; |
| | | |
| | | /** |
| | | * 证件号码 |
| | | */ |
| | | @Excel(name = "证件号码") |
| | | private String certificateNo; |
| | | |
| | | /** |
| | | * 固定电话 |
| | | */ |
| | | @Excel(name = "固定电话") |
| | | private String fixedNo; |
| | | |
| | | /** |
| | | * 移动电话 |
| | | */ |
| | | @Excel(name = "移动电话") |
| | | private String phoneNo; |
| | | |
| | | /** |
| | | * 拥有犬只数量 |
| | | * 拥有宠物数量 |
| | | */ |
| | | @Excel(name = "拥有宠物数量") |
| | | private Integer many; |
| | | |
| | | /** |
| | | * 住所详细地址 |
| | | */ |
| | | @Excel(name = "住所详细地址") |
| | | private String address; |
| | | |
| | | /** |
| | | * 住所性质 |
| | | */ |
| | | @Excel(name = "住所性质") |
| | | private String property; |
| | | |
| | | /** |
| | | * 电子邮件 |
| | | */ |
| | | @Excel(name = "邮箱") |
| | | 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 + |
| | | "}"; |
| | | } |
| | | } |