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.
74 lines
1.3 KiB
74 lines
1.3 KiB
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-09-27
|
|
*/
|
|
@Data
|
|
@EqualsAndHashCode(callSuper=false)
|
|
@TableName("ic_nat_compare_rec_relation")
|
|
public class IcNatCompareRecRelationEntity extends BaseEpmetEntity {
|
|
|
|
private static final long serialVersionUID = 1L;
|
|
|
|
/**
|
|
* 客户Id
|
|
*/
|
|
private String customerId;
|
|
|
|
/**
|
|
* ic_nat_compare_record.id
|
|
*/
|
|
private String compareRecId;
|
|
|
|
/**
|
|
* 导入日期:yyyyMMdd
|
|
*/
|
|
private String importDate;
|
|
|
|
/**
|
|
* 导入时间,同一天内导入多次需要更新此列值
|
|
*/
|
|
private Date importTime;
|
|
|
|
/**
|
|
* 操作人员所属组织id
|
|
*/
|
|
private String agencyId;
|
|
|
|
/**
|
|
* agency_id的上级
|
|
*/
|
|
private String pid;
|
|
|
|
/**
|
|
* agency_id组织的所有上级
|
|
*/
|
|
private String pids;
|
|
|
|
/**
|
|
* 操作人
|
|
*/
|
|
private String staffId;
|
|
|
|
/**
|
|
* 操作人姓名
|
|
*/
|
|
private String staffName;
|
|
|
|
/**
|
|
* 是否本社区(agency_id)下居民(0:否 1:是)
|
|
*/
|
|
private String isAgencyUser;
|
|
|
|
}
|
|
|