日照智慧社区接口服务
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.

89 lines
1.4 KiB

4 years ago
package com.epmet.dto;
4 years ago
import lombok.Data;
4 years ago
import java.io.Serializable;
import java.util.Date;
/**
* 疫苗接种记录关系表
*
* @author generator generator@elink-cn.com
* @since v1.0.0 2022-04-06
*/
@Data
public class IcVaccineRelationDTO implements Serializable {
private static final long serialVersionUID = 1L;
/**
* ID
*/
private String id;
/**
* 客户Id
*/
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;
/**
* 是否本辖区居民10
*/
private String isLocalResiUser;
4 years ago
/**
* 删除标识
*/
private Integer delFlag;
/**
* 乐观锁
*/
private Integer revision;
/**
* 创建人
*/
private String createdBy;
/**
* 创建时间
*/
private Date createdTime;
/**
* 更新人
*/
private String updatedBy;
/**
* 更新时间
*/
private Date updatedTime;
4 years ago
}