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.fasterxml.jackson.annotation.JsonFormat;
|
import com.ycl.system.entity.BaseEntity;
|
import lombok.Data;
|
import org.apache.commons.lang.builder.ToStringBuilder;
|
import org.apache.commons.lang.builder.ToStringStyle;
|
|
import java.util.Date;
|
|
/**
|
* 运维阈值对象 t_yw_threshold
|
*
|
* @author gonghl
|
* @date 2024-07-19
|
*/
|
@Data
|
@TableName("t_yw_threshold")
|
public class YwThreshold
|
{
|
private static final long serialVersionUID = 1L;
|
|
/** */
|
@TableId(value = "id", type = IdType.AUTO)
|
private Long id;
|
|
/** 设备类型 */
|
@Excel(name = "设备类型")
|
@TableField("monitor_type")
|
private String monitorType;
|
|
/** 计数类型 */
|
@Excel(name = "计数类型")
|
@TableField("count_type")
|
private String countType;
|
|
/** 阈值名 */
|
@Excel(name = "阈值名")
|
@TableField("name")
|
private String name;
|
|
/** 工单阈值 */
|
@Excel(name = "工单阈值")
|
@TableField("value")
|
private String value;
|
|
/** 下发阈值 */
|
@Excel(name = "下发阈值")
|
@TableField("value_auto")
|
private String valueAuto;
|
|
/** 描述 */
|
@Excel(name = "描述")
|
@TableField("description")
|
private String description;
|
|
/** 逻辑删除:0未删除 1删除 */
|
@Excel(name = "逻辑删除:0未删除 1删除")
|
private String deleted;
|
|
/** 创建时间 */
|
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
|
@TableField("create_time")
|
@Excel(name = "创建时间")
|
private Date createTime;
|
|
/** 更新时间 */
|
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
|
@TableField("update_time")
|
@Excel(name = "更新时间")
|
private Date updateTime;
|
|
}
|