package com.ycl.platform.domain.entity;
|
|
|
import annotation.Excel;
|
import com.baomidou.mybatisplus.annotation.IdType;
|
import com.baomidou.mybatisplus.annotation.TableField;
|
import com.baomidou.mybatisplus.annotation.TableId;
|
import com.baomidou.mybatisplus.annotation.TableName;
|
import com.ycl.system.entity.BaseEntity;
|
import lombok.Data;
|
import org.apache.commons.lang3.builder.ToStringBuilder;
|
import org.apache.commons.lang3.builder.ToStringStyle;
|
|
/**
|
* 运维阈值对象 t_yw_threshold
|
*
|
* @author gonghl
|
* @date 2024-03-25
|
*/
|
@Data
|
@TableName("t_yw_threshold")
|
public class YwThreshold extends BaseEntity {
|
|
private static final long serialVersionUID = 1L;
|
|
/**
|
* 主键
|
*/
|
@TableId(value = "id", type = IdType.AUTO)
|
private Integer id;
|
|
/**
|
* 设备类型:1人脸 2车辆 3视频
|
*/
|
@Excel(name = "设备类型:1人脸 2车辆 3视频")
|
@TableField("monitor_type")
|
private String monitorType;
|
|
/**
|
* 超时天数
|
*/
|
@Excel(name = "超时天数")
|
@TableField("timeout")
|
private Integer timeout;
|
|
/**
|
* 指标json
|
*/
|
@Excel(name = "指标json")
|
@TableField("indicator")
|
private String indicator;
|
|
/**
|
* 逻辑删除:0未删除 1删除
|
*/
|
|
@TableField("deleted")
|
private String deleted;
|
|
}
|