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.
79 lines
1.3 KiB
79 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-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;
|
|
|
|
/**
|
|
* 关注类型,核酸检测:2,疫苗接种:1
|
|
*/
|
|
private Integer attentionType;
|
|
|
|
/**
|
|
* 姓名
|
|
*/
|
|
private String name;
|
|
|
|
/**
|
|
* 手机号
|
|
*/
|
|
private String mobile;
|
|
|
|
/**
|
|
* 身份证号
|
|
*/
|
|
private String idCard;
|
|
|
|
/**
|
|
* 原因
|
|
*/
|
|
private String reason;
|
|
|
|
/**
|
|
* 备注
|
|
*/
|
|
private String remark;
|
|
|
|
}
|
|
|