package com.panzhihua.service_community.model.dos;
|
|
import java.io.Serializable;
|
import java.util.Date;
|
|
import com.baomidou.mybatisplus.annotation.IdType;
|
import com.baomidou.mybatisplus.annotation.TableId;
|
import com.baomidou.mybatisplus.annotation.TableName;
|
|
import lombok.Data;
|
|
/**
|
* @auther lyq
|
* @create 2021-05-19 14:17:59
|
* @describe 疫苗接种记录表实体类
|
*/
|
|
@Data
|
@TableName("com_mng_vaccines_inoculation_record")
|
public class ComMngVaccinesInoculationRecordDO implements Serializable {
|
|
private static final long serialVersionUID = 1L;
|
|
/**
|
* 主键id
|
*/
|
@TableId(type = IdType.ASSIGN_ID)
|
private Long id;
|
|
/**
|
* 疫苗类型
|
*/
|
private String vaccines;
|
|
/**
|
* 接种用户id(对应家庭成员表id)
|
*/
|
private Long userId;
|
|
/**
|
* 姓名
|
*/
|
private String name;
|
|
/**
|
* 性别(1.男 2.女)
|
*/
|
private Integer sex;
|
|
/**
|
* 年龄
|
*/
|
private Integer age;
|
|
/**
|
* 手机号
|
*/
|
private String phone;
|
|
/**
|
* 身份证号码
|
*/
|
private String idCard;
|
|
/**
|
* 接种剂次
|
*/
|
private String dosage;
|
|
/**
|
* 疫苗编号
|
*/
|
private String vaccinesCode;
|
|
/**
|
* 医疗机构
|
*/
|
private String medicalInstitution;
|
|
/**
|
* 备注
|
*/
|
private String remark;
|
|
/**
|
* 接种时间
|
*/
|
private Date inoculationAt;
|
|
/**
|
* 创建时间
|
*/
|
private Date createAt;
|
|
/**
|
* 接种用户类型(1.小程序用户 2.家庭成员用户
|
*/
|
private Long userType;
|
|
/**
|
* 社区id
|
*/
|
private Long communityId;
|
|
@Override
|
public String toString() {
|
return "ComMngVaccinesInoculationRecordDO{" + "id=" + id + ", vaccines=" + vaccines + ", userId=" + userId
|
+ ", name=" + name + ", sex=" + sex + ", age=" + age + ", phone=" + phone + ", idCard=" + idCard
|
+ ", dosage=" + dosage + ", vaccinesCode=" + vaccinesCode + ", medicalInstitution=" + medicalInstitution
|
+ ", remark=" + remark + ", inoculationAt=" + inoculationAt + ", createAt=" + createAt + "}";
|
}
|
}
|