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-03-18 */ @Data @EqualsAndHashCode(callSuper=false) @TableName("ic_resi_member") public class IcResiMemberEntity extends BaseEpmetEntity { private static final long serialVersionUID = 1L; /** * 客户Id customer.id */ private String customerId; /** * ic_resi_colllect.id */ private String icResiCollectId; /** * 居住成员1姓名 */ private String name; /** * 居住成员1身份证号 */ private String idNum; /** * 居住成员1手机号 */ private String mobile; /** * 居住成员1是否参加几轮全员核算检测,数字1-10 */ private Integer hesuanCount; /** * 居住成员1新冠疫苗接种情况;1:已全程接种;2:未全程接种;0未接种; */ private Integer ymjz; }