燕山石化溯源三维电子沙盘-【后端】-服务
1
13693261870
2024-11-13 2f55cebbad3dea187a5f91d16ec80a9677dab699
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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
package com.yssh.entity;
 
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
 
import java.io.Serializable;
import java.util.Date;
 
import lombok.Data;
import lombok.ToString;
 
@Data
@ToString
@ApiModel(value="报警/预警对象", description="报警/预警对象")
public class WarningDetail implements Serializable {
    public WarningDetail() {
    }
 
    public WarningDetail(Long id, String tableName, String suYuanId, String locationName, Date createTime, Integer type, Double value) {
        this.id = id;
        this.tableName = tableName;
        this.suYuanId = suYuanId;
        this.locationName = locationName;
        this.createTime = createTime;
        this.type = type;
        this.value = value;
    }
 
    private static final long serialVersionUID = 1610250573910282005L;
 
    @ApiModelProperty(value = "主键")
    private Long id;
 
    @ApiModelProperty(value = "溯源数据表名")
    private String tableName;
 
    @ApiModelProperty(value = "溯源数据编号")
    private String suYuanId;
 
    @ApiModelProperty(value = "点位名称")
    private String locationName;
 
    @ApiModelProperty(value = "时间")
    private Date createTime;
 
    @ApiModelProperty(value = "类型")
    private Integer type;
 
    @ApiModelProperty(value = "数值")
    private Double value;
 
    public Long getId() {
        return id;
    }
 
    public void setId(Long id) {
        this.id = id;
    }
 
    public String getTableName() {
        return tableName;
    }
 
    public void setTableName(String tableName) {
        this.tableName = tableName;
    }
 
    public String getSuYuanId() {
        return suYuanId;
    }
 
    public void setSuYuanId(String suYuanId) {
        this.suYuanId = suYuanId;
    }
 
    public String getLocationName() {
        return locationName;
    }
 
    public void setLocationName(String locationName) {
        this.locationName = locationName;
    }
 
    public Date getCreateTime() {
        return createTime;
    }
 
    public void setCreateTime(Date createTime) {
        this.createTime = createTime;
    }
 
    public Integer getType() {
        return type;
    }
 
    public void setType(Integer type) {
        this.type = type;
    }
 
    public Double getValue() {
        return value;
    }
 
    public void setValue(Double value) {
        this.value = value;
    }
}