燕山石化溯源三维电子沙盘-【后端】-服务
1
13693261870
2023-04-27 1d1b21f7f9416dc6a350dc83506364bb822e9e1c
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
package com.yssh.entity;
 
import java.io.Serializable;
 
import lombok.AllArgsConstructor;
import lombok.Data;
import lombok.NoArgsConstructor;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
 
@Data
@NoArgsConstructor
@AllArgsConstructor
@ApiModel(value = "溯源监测数据",description = "溯源监测数据")
public class SuYuanMonitorData implements Serializable{
 
    private static final long serialVersionUID = -7472189043893753483L;
    @ApiModelProperty(value = "主键")
    private String id;
    @ApiModelProperty(value = "数值")
    private Double value;
    @ApiModelProperty(value = "时间")
    private Integer time;
 
    public String getId() {
        return id;
    }
 
    public void setId(String id) {
        this.id = id;
    }
 
    public Double getValue() {
        return value;
    }
 
    public void setValue(Double value) {
        this.value = value;
    }
 
    public Integer getTime() {
        return time;
    }
 
    public void setTime(Integer time) {
        this.time = time;
    }
}