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.
		
		
		
		
		
			
		
			
				
					
					
						
							57 lines
						
					
					
						
							1.3 KiB
						
					
					
				
			
		
		
		
			
			
			
				
					
				
				
					
				
			
		
		
	
	
							57 lines
						
					
					
						
							1.3 KiB
						
					
					
				
								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;
							 | 
						|
								
							 | 
						|
								/**
							 | 
						|
								 * 核酸记录关系表
							 | 
						|
								 *
							 | 
						|
								 * @author generator generator@elink-cn.com
							 | 
						|
								 * @since v1.0.0 2022-03-31
							 | 
						|
								 */
							 | 
						|
								@Data
							 | 
						|
								@EqualsAndHashCode(callSuper=false)
							 | 
						|
								@TableName("ic_nat_relation")
							 | 
						|
								public class IcNatRelationEntity 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_nat.id)
							 | 
						|
								     */
							 | 
						|
									private String icNatId;
							 | 
						|
								
							 | 
						|
									/**
							 | 
						|
									 * 是否本辖区居民,1:是;0:否
							 | 
						|
									 */
							 | 
						|
									private String isLocalResiUser;
							 | 
						|
								
							 | 
						|
								    /**
							 | 
						|
								     * 	关系数据的绑定途径【居民端录入:resi;
							 | 
						|
										数字社区录入:icresi;
							 | 
						|
										导入的:import;
							 | 
						|
										同步的:synchro】
							 | 
						|
								     */
							 | 
						|
									private String userType;
							 | 
						|
								
							 | 
						|
								}
							 | 
						|
								
							 |