yangys
2024-10-30 25db770e621f1259b8d5b7fd514207f7481c2d0f
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
package com.qianwen.smartman.modules.mdc.entity;
 
/**
 * 工位最新参数
 */
public class LastProcessParam{
 
    private long time;
    /**
     * 最后采集时间
     */
    private long updateTime;
    /**
     * 工位id
     */
    private long workstationId;
    /**
     * 参数集合,都是最新的值
     */
    private String paramJson;
    public long getTime() {
        return time;
    }
    public void setTime(long time) {
        this.time = time;
    }
    public long getUpdateTime() {
        return updateTime;
    }
    public void setUpdateTime(long updateTime) {
        this.updateTime = updateTime;
    }
    public long getWorkstationId() {
        return workstationId;
    }
    public void setWorkstationId(long workstationId) {
        this.workstationId = workstationId;
    }
    public String getParamJson() {
        return paramJson;
    }
    public void setParamJson(String paramJson) {
        this.paramJson = paramJson;
    }
    
    
}