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.
|
|
|
package com.epmet.entity;
|
|
|
|
|
|
|
|
import com.baomidou.mybatisplus.annotation.FieldFill;
|
|
|
|
import com.baomidou.mybatisplus.annotation.TableField;
|
|
|
|
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-04-06
|
|
|
|
*/
|
|
|
|
@Data
|
|
|
|
@EqualsAndHashCode(callSuper=false)
|
|
|
|
@TableName("ic_vaccine_relation")
|
|
|
|
public class IcVaccineRelationEntity extends BaseEpmetEntity {
|
|
|
|
|
|
|
|
private static final long serialVersionUID = 1L;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* 客户Id
|
|
|
|
*/
|
|
|
|
@TableField(fill = FieldFill.INSERT)
|
|
|
|
private String customerId;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* 居民端上报时存储用户所在网格的组织id.居民信息的人存储居民所在组织id.单个新增或者导入的存储登录用户所属的组织id
|
|
|
|
*/
|
|
|
|
private String agencyId;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* 组织pids,包含当前agencyId值
|
|
|
|
*/
|
|
|
|
private String pids;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* 疫苗记录表Id(ic_vaccine.id)
|
|
|
|
*/
|
|
|
|
private String icVaccineId;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* 关系数据的绑定途径【
|
|
|
|
数字社区录入:icresi;
|
|
|
|
导入的:import;
|
|
|
|
同步的:synchro】
|
|
|
|
*/
|
|
|
|
private String userType;
|
|
|
|
|
|
|
|
}
|