fuliqi
2024-07-22 2be2f6c3e5b2be2bae1562423a9a4d29aa174aae
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
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;
 
}