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.
 
 
 
 
 

60 lines
1.0 KiB

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_notice")
public class IcNoticeEntity extends BaseEpmetEntity {
private static final long serialVersionUID = 1L;
/**
* 客户Id customer.id
*/
private String customerId;
/**
* 通知渠道 0小程序通知,1短信通知
*/
private String channel;
/**
* 通知来源 0行程上报,1疫苗接种,2核酸检测
*/
private String origin;
/**
* 用户ID
*/
private String userId;
/**
* 手机号
*/
private String mobile;
/**
* 被通知人身份证号
*/
private String idCard;
/**
* 通知内容
*/
private String content;
/**
* 发送通知的社区
*/
private String orgName;
}