package com.panzhihua.service_grid.model.dos;
|
|
import java.io.Serializable;
|
import java.util.Date;
|
|
import com.baomidou.mybatisplus.annotation.IdType;
|
import com.baomidou.mybatisplus.annotation.TableId;
|
import com.baomidou.mybatisplus.annotation.TableName;
|
|
import lombok.Data;
|
|
/**
|
* @auther lyq
|
* @create 2021-06-22 15:37:01
|
* @describe 事件-特殊人群上报人口关联表实体类
|
*/
|
|
@Data
|
@TableName("event_special_crowd_record")
|
public class EventSpecialCrowdRecordDO implements Serializable {
|
|
private static final long serialVersionUID = 1L;
|
|
/**
|
* 主键id
|
*/
|
@TableId(type = IdType.ASSIGN_ID)
|
private Long id;
|
|
/**
|
* 事件id
|
*/
|
private Long eventId;
|
|
/**
|
* 实有人口id
|
*/
|
private Long populationId;
|
|
/**
|
* 创建时间
|
*/
|
private Date createAt;
|
|
@Override
|
public String toString() {
|
return "EventSpecialCrowdRecordDO{" + "id=" + id + ", eventId=" + eventId + ", populationId=" + populationId
|
+ ", createAt=" + createAt + "}";
|
}
|
}
|