监控设备、重点活动、重点区域一张图地图撒点
This commit is contained in:
parent
1940e712d1
commit
9df0cda222
|
|
@ -0,0 +1,41 @@
|
|||
package com.dkl.large.domain;
|
||||
|
||||
import com.baomidou.mybatisplus.annotation.TableField;
|
||||
import lombok.Data;
|
||||
import org.apache.commons.lang3.builder.ToStringBuilder;
|
||||
import org.apache.commons.lang3.builder.ToStringStyle;
|
||||
import com.dkl.common.annotation.Excel;
|
||||
import com.dkl.common.core.domain.BaseEntity;
|
||||
|
||||
/**
|
||||
* 督办信息对象 dkl_supervise
|
||||
*
|
||||
* @author Dkl
|
||||
* @date 2025-11-03
|
||||
*/
|
||||
@Data
|
||||
public class DklSupervise extends BaseEntity
|
||||
{
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
/** id */
|
||||
private Long id;
|
||||
|
||||
/** 预警信息id */
|
||||
@Excel(name = "预警信息id")
|
||||
private int warningId;
|
||||
|
||||
@TableField(exist = false)
|
||||
private String warningName;
|
||||
/** 类型 */
|
||||
@Excel(name = "类型")
|
||||
private String types;
|
||||
|
||||
/** 删除标志(0代表存在 2代表删除) */
|
||||
private String delFlag;
|
||||
|
||||
/** 内容 */
|
||||
@Excel(name = "内容")
|
||||
private String contents;
|
||||
|
||||
}
|
||||
Loading…
Reference in New Issue