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.
82 lines
1.3 KiB
82 lines
1.3 KiB
3 years ago
|
package com.epmet.dto;
|
||
|
|
||
|
import java.io.Serializable;
|
||
|
import java.util.Date;
|
||
|
import lombok.Data;
|
||
|
|
||
|
|
||
|
/**
|
||
|
* 疫苗接种记录关系表
|
||
|
*
|
||
|
* @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;
|
||
|
|
||
|
/**
|
||
|
* 删除标识
|
||
|
*/
|
||
|
private Integer delFlag;
|
||
|
|
||
|
/**
|
||
|
* 乐观锁
|
||
|
*/
|
||
|
private Integer revision;
|
||
|
|
||
|
/**
|
||
|
* 创建人
|
||
|
*/
|
||
|
private String createdBy;
|
||
|
|
||
|
/**
|
||
|
* 创建时间
|
||
|
*/
|
||
|
private Date createdTime;
|
||
|
|
||
|
/**
|
||
|
* 更新人
|
||
|
*/
|
||
|
private String updatedBy;
|
||
|
|
||
|
/**
|
||
|
* 更新时间
|
||
|
*/
|
||
|
private Date updatedTime;
|
||
|
|
||
|
}
|