广丰卷烟厂数采质量分析系统
zhuguifei
2026-03-02 80ff784bf60637cd348ae665fc907f7b1e527dd8
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
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
package org.dromara.qa.domain;
 
import org.dromara.common.mybatis.core.domain.BaseEntity;
import com.baomidou.mybatisplus.annotation.*;
import lombok.Data;
import lombok.EqualsAndHashCode;
import java.util.Date;
import java.io.Serial;
 
/**
 * 喂丝机分析对象 feedmatch_time_data
 *
 * @author zhuguifei
 * @date 2026-01-29
 */
@Data
@EqualsAndHashCode(callSuper = true)
@TableName("feedmatch_time_data")
public class FeedmatchTimeData extends BaseEntity {
 
    @Serial
    private static final long serialVersionUID = 1L;
 
    /**
     * 时间
     */
    private Date time;
 
    /**
     * Key
     */
    private String key;
 
    /**
     * 班次 (1位数字)
     */
    private Integer shift;
 
    /**
     * 设备号 (3位数字)
     */
    private Integer equNo;
 
    /**
     * 数据更新时间
     */
    private String dacUpTime;
 
    /**
     * 1#喂丝机对应的第一个储丝柜
     */
    private Integer fs11;
 
    /**
     * 1#喂丝机对应的第二个储丝柜
     */
    private Integer fs12;
 
    /**
     * 2#喂丝机对应的第一个储丝柜
     */
    private Integer fs21;
 
    /**
     * 2#喂丝机对应的第二个储丝柜
     */
    private Integer fs22;
 
    /**
     * 3#喂丝机对应的第一个储丝柜
     */
    private Integer fs31;
 
    /**
     * 3#喂丝机对应的第二个储丝柜
     */
    private Integer fs32;
 
    /**
     * 4#喂丝机对应的第一个储丝柜
     */
    private Integer fs41;
 
    /**
     * 4#喂丝机对应的第二个储丝柜
     */
    private Integer fs42;
 
    /**
     * 1#机组对应的喂丝机和管道
     */
    private Integer pipe01;
 
    /**
     * 2#机组对应的喂丝机和管道
     */
    private Integer pipe02;
 
    /**
     * 3#机组对应的喂丝机和管道
     */
    private Integer pipe03;
 
    /**
     * 4#机组对应的喂丝机和管道
     */
    private Integer pipe04;
 
    /**
     * 5#机组对应的喂丝机和管道
     */
    private Integer pipe05;
 
    /**
     * 6#机组对应的喂丝机和管道
     */
    private Integer pipe06;
 
    /**
     * 7#机组对应的喂丝机和管道
     */
    private Integer pipe07;
 
    /**
     * 8#机组对应的喂丝机和管道
     */
    private Integer pipe08;
 
    /**
     * 9#机组对应的喂丝机和管道
     */
    private Integer pipe09;
 
    /**
     * 10#机组对应的喂丝机和管道
     */
    private Integer pipe10;
 
    /**
     * 11#机组对应的喂丝机和管道
     */
    private Integer pipe11;
 
    /**
     * 12#机组对应的喂丝机和管道
     */
    private Integer pipe12;
 
    /**
     * 喂丝机状态 1-连接 0-断开
     */
    private Integer wsjState;
 
}