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.
55 lines
971 B
55 lines
971 B
3 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;
|
||
|
|
||
|
import java.util.Date;
|
||
|
|
||
|
/**
|
||
|
* 防疫通知
|
||
|
*
|
||
|
* @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;
|
||
|
|
||
|
/**
|
||
|
* 被通知人身份证号
|
||
|
*/
|
||
|
private String idCard;
|
||
|
|
||
|
/**
|
||
|
* 通知内容
|
||
|
*/
|
||
|
private String content;
|
||
|
|
||
|
/**
|
||
|
* 发送通知的社区
|
||
|
*/
|
||
|
private String orgName;
|
||
|
|
||
|
}
|