yangys
2024-10-09 7ef593e1e3c35aaeecf9318f0b3941230d3ed002
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
package com.qianwen.mdc.collect.entity.iotdb;
 
import java.sql.Timestamp;
 
public class ProcessParam {
    /**
     * 时间戳
     */
    private Long time;
    
    /**
     * 工位id
     */
    private Long workstationId;
    /**
     * 数据名称,如Output,DeviceStatus等
     */
    private String n;
    /**
     * 数据的值
     */
    private String v;
    
    
    public ProcessParam() {
    }
    public ProcessParam(Long time, Long workstationId, String n, String v) {
        super();
        this.time = time;
        this.workstationId = workstationId;
        this.n = n;
        this.v = v;
    }
    
    public Long getTime() {
        return time;
    }
    public void setTime(Long time) {
        this.time = time;
    }
    public Long getWorkstationId() {
        return workstationId;
    }
    public void setWorkstationId(Long workstationId) {
        this.workstationId = workstationId;
    }
    public String getN() {
        return n;
    }
    public void setN(String n) {
        this.n = n;
    }
    public String getV() {
        return v;
    }
    public void setV(String v) {
        this.v = v;
    }
    
}