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.
106 lines
1.9 KiB
106 lines
1.9 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;
|
|
|
|
import java.util.Date;
|
|
|
|
/**
|
|
* 核酸上报记录
|
|
|
|
*
|
|
* @author generator generator@elink-cn.com
|
|
* @since v1.0.0 2022-03-25
|
|
*/
|
|
@Data
|
|
@EqualsAndHashCode(callSuper=false)
|
|
@TableName("ic_nat")
|
|
public class IcNatEntity extends BaseEpmetEntity {
|
|
|
|
private static final long serialVersionUID = 1L;
|
|
|
|
/**
|
|
* 客户Id CUSTOMER.id
|
|
*/
|
|
@TableField(fill = FieldFill.INSERT)
|
|
private String customerId;
|
|
|
|
/**
|
|
* 是否客户下居民(0:否 1:是)
|
|
*/
|
|
private String isResiUser;
|
|
|
|
/**
|
|
* 居民端小程序的用户id、数字社区的icResiUserId、其他情况无值
|
|
*/
|
|
private String userId;
|
|
|
|
/**
|
|
* 居民端小程序的人:resi;数字社区的居民:icresi;导入的:import;同步的:synchro
|
|
*/
|
|
private String userType;
|
|
|
|
/**
|
|
* 人员姓名
|
|
*/
|
|
private String name;
|
|
|
|
/**
|
|
* 手机号
|
|
*/
|
|
private String mobile;
|
|
|
|
/**
|
|
* 身份证号
|
|
*/
|
|
private String idCard;
|
|
|
|
/**
|
|
* 检测时间,精确到分钟
|
|
*/
|
|
private Date natTime;
|
|
|
|
/**
|
|
* 采样时间
|
|
*/
|
|
private Date sampleTime;
|
|
|
|
/**
|
|
* 检测结果(0:阴性 1:阳性)
|
|
*/
|
|
private String natResult;
|
|
|
|
/**
|
|
* 检测地点
|
|
*/
|
|
private String natAddress;
|
|
|
|
/**
|
|
* 文件名
|
|
*/
|
|
private String fileName;
|
|
|
|
/**
|
|
* 文件类型((图片 - image、 视频 - video、 语音 - voice、 文档 - doc))
|
|
*/
|
|
private String attachmentType;
|
|
|
|
/**
|
|
* url地址
|
|
*/
|
|
private String attachmentUrl;
|
|
|
|
@TableField(exist = false)
|
|
private String agencyId;
|
|
|
|
@TableField(exist = false)
|
|
private String pids;
|
|
|
|
@TableField(exist = false)
|
|
private Boolean existStatus = false;
|
|
|
|
}
|
|
|