forked from luyan/epmet-cloud-lingshan
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
164 lines
2.4 KiB
164 lines
2.4 KiB
package com.epmet.entity;
|
|
|
|
import com.baomidou.mybatisplus.annotation.TableName;
|
|
|
|
import com.epmet.commons.mybatis.entity.BaseEpmetEntity;
|
|
import lombok.Data;
|
|
import lombok.EqualsAndHashCode;
|
|
|
|
import java.util.Date;
|
|
|
|
/**
|
|
* 新冠病毒疫苗接种人员信息台账
|
|
*
|
|
* @author generator generator@elink-cn.com
|
|
* @since v1.0.0 2022-08-22
|
|
*/
|
|
@Data
|
|
@EqualsAndHashCode(callSuper=false)
|
|
@TableName("ic_vaccine_prarmeter")
|
|
public class IcVaccinePrarmeterEntity extends BaseEpmetEntity {
|
|
|
|
private static final long serialVersionUID = 1L;
|
|
|
|
/**
|
|
* 客户Id customer.id
|
|
*/
|
|
private String customerId;
|
|
|
|
/**
|
|
* 网格ID
|
|
*/
|
|
private String gridId;
|
|
|
|
/**
|
|
* 网格名称
|
|
*/
|
|
private String gridName;
|
|
|
|
/**
|
|
* 组织Id
|
|
*/
|
|
private String agencyId;
|
|
|
|
/**
|
|
* 组织的pids
|
|
*/
|
|
private String pids;
|
|
|
|
/**
|
|
* 所属小区ID;
|
|
*/
|
|
private String villageId;
|
|
|
|
/**
|
|
* 所属小区名称
|
|
*/
|
|
private String villageName;
|
|
|
|
/**
|
|
* 所属楼宇Id
|
|
*/
|
|
private String buildId;
|
|
|
|
/**
|
|
* 所属楼宇名称
|
|
*/
|
|
private String buildName;
|
|
|
|
/**
|
|
* 单元id
|
|
*/
|
|
private String unitId;
|
|
|
|
/**
|
|
* 单元名
|
|
*/
|
|
private String unitName;
|
|
|
|
/**
|
|
* 所属家庭Id
|
|
*/
|
|
private String homeId;
|
|
|
|
/**
|
|
* 房间名
|
|
*/
|
|
private String homeName;
|
|
|
|
/**
|
|
* 户口性质:0户籍 1外来
|
|
*/
|
|
private String householdType;
|
|
|
|
/**
|
|
* 姓名
|
|
*/
|
|
private String name;
|
|
|
|
/**
|
|
* 联系电话
|
|
*/
|
|
private String mobile;
|
|
|
|
/**
|
|
* 身份证号
|
|
*/
|
|
private String idCard;
|
|
|
|
/**
|
|
* 是否接种:0否1是
|
|
*/
|
|
private String isVaccination;
|
|
|
|
/**
|
|
* 第一次接种时间
|
|
*/
|
|
private Date firstVacTime;
|
|
|
|
/**
|
|
* 第一次接种地点
|
|
*/
|
|
private String firstVacSite;
|
|
|
|
/**
|
|
* 第二次接种时间
|
|
*/
|
|
private Date secondVacTime;
|
|
|
|
/**
|
|
* 第二次接种地点
|
|
*/
|
|
private String secondVacSite;
|
|
|
|
/**
|
|
* 第三次接种时间
|
|
*/
|
|
private Date thirdVacTime;
|
|
|
|
/**
|
|
* 第三次接种地点
|
|
*/
|
|
private String thirdVacSite;
|
|
|
|
/**
|
|
* 原因:禁忌症/拒绝接种/其他原因
|
|
*/
|
|
private String reason;
|
|
|
|
/**
|
|
* 备注
|
|
*/
|
|
private String note;
|
|
|
|
/**
|
|
* 审核状态:0待审核 1审核不通过 2审核通过
|
|
*/
|
|
private String checkState;
|
|
|
|
/**
|
|
* 审核理由
|
|
*/
|
|
private String checkReason;
|
|
|
|
}
|
|
|