zhuguifei
2026-03-10 58402bd5e762361363a0f7d7907153c77dbb819f
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
108
109
110
111
112
113
114
package com.shlanbao.tzsc.pms.msg.cons.beans;
 
import java.util.Date;
import com.shlanbao.tzsc.base.mapping.SchWorkorder;
import com.shlanbao.tzsc.utils.extents.DateFmtAnnotation;
 
public class MsgConWarnBean {
    private String id;
    private String workId; //工单ID
    private String workCode;//工单编码
    private String workShopId;//车间ID
    private String workShopName;//车间名称
    private String equipId;//机台ID
    private String equipName;//机台名称
    private Double std;
    private Double val;
    private String item;
    @DateFmtAnnotation(fmtPattern="yyyy-MM-dd HH:mm:ss")
    private String time;
    private Long sts;
    private String content;
    private Long del;
    private String time2;
    public String getTime2() {
        return time2;
    }
    public void setTime2(String time2) {
        this.time2 = time2;
    }
    public String getId() {
        return id;
    }
    public void setId(String id) {
        this.id = id;
    }
    public String getWorkId() {
        return workId;
    }
    public void setWorkId(String workId) {
        this.workId = workId;
    }
    public String getWorkCode() {
        return workCode;
    }
    public void setWorkCode(String workCode) {
        this.workCode = workCode;
    }
    public String getWorkShopId() {
        return workShopId;
    }
    public void setWorkShopId(String workShopId) {
        this.workShopId = workShopId;
    }
    public String getWorkShopName() {
        return workShopName;
    }
    public void setWorkShopName(String workShopName) {
        this.workShopName = workShopName;
    }
    public String getEquipId() {
        return equipId;
    }
    public void setEquipId(String equipId) {
        this.equipId = equipId;
    }
    public String getEquipName() {
        return equipName;
    }
    public void setEquipName(String equipName) {
        this.equipName = equipName;
    }
    public Double getStd() {
        return std;
    }
    public void setStd(Double std) {
        this.std = std;
    }
    public Double getVal() {
        return val;
    }
    public void setVal(Double val) {
        this.val = val;
    }
    public String getItem() {
        return item;
    }
    public void setItem(String item) {
        this.item = item;
    }
    public String getTime() {
        return time;
    }
    public void setTime(String time) {
        this.time = time;
    }
    public Long getSts() {
        return sts;
    }
    public void setSts(Long sts) {
        this.sts = sts;
    }
    public String getContent() {
        return content;
    }
    public void setContent(String content) {
        this.content = content;
    }
    public Long getDel() {
        return del;
    }
    public void setDel(Long del) {
        this.del = del;
    }
}