package com.ruoyi.domain;
|
|
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;
|
|
/**
|
* <p>
|
* 魅宠主人表
|
* </p>
|
*
|
* @author ojq
|
* @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 Long id;
|
|
/**
|
* 宠物id
|
*/
|
private String petId;
|
|
/**
|
* 养犬人姓名
|
*/
|
@Excel(name = "name")
|
private String name;
|
|
/**
|
* 证件类型
|
*/
|
@Excel(name="证件类型")
|
private String certificateType;
|
|
/**
|
* 证件号码
|
*/
|
@Excel(name = "证件号码")
|
private String certificateNo;
|
|
|
/**
|
* 移动电话
|
*/
|
@Excel(name = "移动电话")
|
private String phoneNo;
|
|
|
/**
|
* 住所详细地址
|
*/
|
@Excel(name = "住所详细地址")
|
private String address;
|
|
|
}
|