广丰卷烟厂数采质量分析系统
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
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
package org.dromara.analy.domain.vo;
 
import java.util.Date;
import com.fasterxml.jackson.annotation.JsonFormat;
import org.dromara.analy.domain.FeedmatchTimeData;
import cn.idev.excel.annotation.ExcelIgnoreUnannotated;
import cn.idev.excel.annotation.ExcelProperty;
import org.dromara.common.excel.annotation.ExcelDictFormat;
import org.dromara.common.excel.convert.ExcelDictConvert;
import io.github.linpeilie.annotations.AutoMapper;
import lombok.Data;
 
import java.io.Serial;
import java.io.Serializable;
import java.util.Date;
 
 
 
/**
 * 喂丝机对应关系视图对象 feedmatch_time_data
 *
 * @author zhuguifei
 * @date 2026-03-02
 */
@Data
@ExcelIgnoreUnannotated
@AutoMapper(target = FeedmatchTimeData.class)
public class FeedmatchTimeDataVo implements Serializable {
 
    @Serial
    private static final long serialVersionUID = 1L;
 
    /**
     * 时间戳
     */
    @ExcelProperty(value = "时间戳")
    private Date time;
 
    /**
     * 班次+机台
     */
    @ExcelProperty(value = "班次+机台")
    private String key;
 
    /**
     * 数据更新时间
     */
    @ExcelProperty(value = "数据更新时间")
    private String dacUpTime;
 
    /**
     * 1#喂丝机对应的第一个储丝柜
     */
    @ExcelProperty(value = "1#喂丝机对应的第一个储丝柜")
    private String fs11;
 
    /**
     * 1#喂丝机对应的第二个储丝柜
     */
    @ExcelProperty(value = "1#喂丝机对应的第二个储丝柜")
    private String fs12;
 
    /**
     * 2#喂丝机对应的第一个储丝柜
     */
    @ExcelProperty(value = "2#喂丝机对应的第一个储丝柜")
    private String fs21;
 
    /**
     * 2#喂丝机对应的第二个储丝柜
     */
    @ExcelProperty(value = "2#喂丝机对应的第二个储丝柜")
    private String fs22;
 
    /**
     * 3#喂丝机对应的第一个储丝柜
     */
    @ExcelProperty(value = "3#喂丝机对应的第一个储丝柜")
    private String fs31;
 
    /**
     * 3#喂丝机对应的第二个储丝柜
     */
    @ExcelProperty(value = "3#喂丝机对应的第二个储丝柜")
    private String fs32;
 
    /**
     * 4#喂丝机对应的第一个储丝柜
     */
    @ExcelProperty(value = "4#喂丝机对应的第一个储丝柜")
    private String fs41;
 
    /**
     * 4#喂丝机对应的第二个储丝柜
     */
    @ExcelProperty(value = "4#喂丝机对应的第二个储丝柜")
    private String fs42;
 
    /**
     * 1#机组对应的喂丝机和管道
     */
    @ExcelProperty(value = "1#机组对应的喂丝机和管道")
    private Long pipe01;
 
    /**
     * 2#机组对应的喂丝机和管道
     */
    @ExcelProperty(value = "2#机组对应的喂丝机和管道")
    private Long pipe02;
 
    /**
     * 3#机组对应的喂丝机和管道
     */
    @ExcelProperty(value = "3#机组对应的喂丝机和管道")
    private Long pipe03;
 
    /**
     * 4#机组对应的喂丝机和管道
     */
    @ExcelProperty(value = "4#机组对应的喂丝机和管道")
    private Long pipe04;
 
    /**
     * 5#机组对应的喂丝机和管道
     */
    @ExcelProperty(value = "5#机组对应的喂丝机和管道")
    private Long pipe05;
 
    /**
     * 6#机组对应的喂丝机和管道
     */
    @ExcelProperty(value = "6#机组对应的喂丝机和管道")
    private Long pipe06;
 
    /**
     * 7#机组对应的喂丝机和管道
     */
    @ExcelProperty(value = "7#机组对应的喂丝机和管道")
    private Long pipe07;
 
    /**
     * 8#机组对应的喂丝机和管道
     */
    @ExcelProperty(value = "8#机组对应的喂丝机和管道")
    private Long pipe08;
 
    /**
     * 9#机组对应的喂丝机和管道
     */
    @ExcelProperty(value = "9#机组对应的喂丝机和管道")
    private Long pipe09;
 
    /**
     * 10#机组对应的喂丝机和管道
     */
    @ExcelProperty(value = "10#机组对应的喂丝机和管道")
    private Long pipe10;
 
    /**
     * 11#机组对应的喂丝机和管道
     */
    @ExcelProperty(value = "11#机组对应的喂丝机和管道")
    private Long pipe11;
 
    /**
     * 12#机组对应的喂丝机和管道
     */
    @ExcelProperty(value = "12#机组对应的喂丝机和管道")
    private Long pipe12;
 
    /**
     * 喂丝机状态 1-连接 0-断开
     */
    @ExcelProperty(value = "喂丝机状态 1-连接 0-断开")
    private Long wsjState;
 
    /**
     * 班次
     */
    @ExcelProperty(value = "班次")
    private Long shift;
 
    /**
     * 机台
     */
    @ExcelProperty(value = "机台")
    private Long equNo;
 
    /**
     * 备注
     */
    @ExcelProperty(value = "备注")
    private String remark;
 
 
}