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

147 lines
2.6 KiB

4 years ago
package com.epmet.entity;
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-28
*/
@Data
@EqualsAndHashCode(callSuper=false)
@TableName("ic_epidemic_special_attention")
public class IcEpidemicSpecialAttentionEntity extends BaseEpmetEntity {
private static final long serialVersionUID = 1L;
/**
* 客户ID
*/
private String customerId;
/**
* 当前工作人员所属组织ID
*/
private String orgId;
/**
* 组织ID上级
*/
private String pid;
/**
* 组织ID所有上级
*/
private String pids;
/**
* 是否关注 1关注0取消关注
*/
private Integer isAttention;
3 years ago
/**
* 是否历史关注1是0否
*/
private String isHistory;
/**
* 隔离类型,来自字典表;集中隔离0;居家隔离1;居家健康监测2;已出隔离期3
3 years ago
*/
private String isolatedState;
4 years ago
/**
4 years ago
* 关注类型核酸检测2疫苗接种1行程上报0
4 years ago
*/
private Integer attentionType;
/**
* 姓名
*/
private String name;
/**
* 手机号
*/
private String mobile;
/**
* 身份证号
*/
private String idCard;
/**
* 关注原因后磐石改名为隔离原因
*/
4 years ago
private String reason;
/**
* 备注
*/
4 years ago
private String remark;
/**
* 管控开始时间yyyy-MM-dd,需求来源于磐石
*/
private String gkStartTime;
/**
* 管控结束时间yyyy-MM-dd,需求来源于磐石
*/
private String gkEndTime;
/**
* 干部名称,需求来源于磐石
*/
private String gbName;
/**
* 干部联系方式,需求来源于磐石
*/
private String gbMobile;
/**
* 社区网格管理员,需求来源于磐石
*/
private String gridManager;
/**
* 社区网格管理员联系方式,需求来源于磐石
*/
private String gridManagerMobile;
/**
* 基层医务工作者,需求来源于磐石
*/
private String healthWorker;
/**
* 基层医务工作者联系方式,需求来源于磐石
*/
private String healthWorkerMobile;
/**
* 民警,需求来源于磐石
*/
private String policeName;
/**
* 民警联系方式,需求来源于磐石
*/
private String policeMobile;
/**
* 志愿者,需求来源于磐石
*/
private String volunteerName;
/**
* 志愿者联系方式,需求来源于磐石
*/
private String volunteerMobile;
4 years ago
}