广丰卷烟厂数采质量分析系统
zhuguifei
2026-03-04 63b4909ac5d0b7355be211cc7080673b41cdb3cc
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
package org.dromara.qa.analy.domain.vo;
 
import java.util.Date;
 
import org.dromara.qa.analy.domain.PackerTimeData;
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;
 
 
/**
 * 包装机分析视图对象 packer_time_data
 *
 * @author zhuguifei
 * @date 2026-01-29
 */
@Data
@ExcelIgnoreUnannotated
@AutoMapper(target = PackerTimeData.class)
public class PackerTimeDataVo implements Serializable {
 
    @Serial
    private static final long serialVersionUID = 1L;
 
    /**
     * 时间
     */
    @ExcelProperty(value = "时间")
    private Date time;
 
    /**
     * key
     */
    @ExcelProperty(value = "key")
    private String key;
 
    /**
     * 网络状态(0异常,1正常)
     */
    @ExcelProperty(value = "网络状态(0异常,1正常)")
    private Integer online;
 
    /**
     * 产量
     */
    @ExcelProperty(value = "产量")
    private Double qty;
 
    /**
     * 剔除产量
     */
    @ExcelProperty(value = "剔除产量")
    private Double badQty;
 
    /**
     * 小盒膜消耗
     */
    @ExcelProperty(value = "小盒膜消耗")
    private Double xiaohemoVal;
 
    /**
     * 条盒膜消耗
     */
    @ExcelProperty(value = "条盒膜消耗")
    private Double tiaohemoVal;
 
    /**
     * 小盒纸消耗
     */
    @ExcelProperty(value = "小盒纸消耗")
    private Double xiaohezhiVal;
 
    /**
     * 条盒纸消耗
     */
    @ExcelProperty(value = "条盒纸消耗")
    private Double tiaohezhiVal;
 
    /**
     * 内衬纸消耗
     */
    @ExcelProperty(value = "内衬纸消耗")
    private Double neichenzhiVal;
 
    /**
     * 运行时间
     */
    @ExcelProperty(value = "运行时间")
    private Double runTime;
 
    /**
     * 停机时间
     */
    @ExcelProperty(value = "停机时间")
    private Double stopTime;
 
    /**
     * 停机次数
     */
    @ExcelProperty(value = "停机次数")
    private Integer stopTimes;
 
    /**
     * 车速
     */
    @ExcelProperty(value = "车速")
    private Integer speed;
 
    /**
     * 运行状态(-1 断网 0停止 1低速运行 2正常运行)
     */
    @ExcelProperty(value = "运行状态(-1 断网 0停止 1低速运行 2正常运行)")
    private Integer runStatus;
 
    /**
     * 提升机产量
     */
    @ExcelProperty(value = "提升机产量")
    private Double tsQty;
 
    /**
     * 主机产量(小包机)
     */
    @ExcelProperty(value = "主机产量", converter = ExcelDictConvert.class)
    @ExcelDictFormat(readConverterExp = "小=包机")
    private Double mainQty;
 
    /**
     * 主机剔除量
     */
    @ExcelProperty(value = "主机剔除量")
    private Double mainBadQty;
 
    /**
     * 透包机产量
     */
    @ExcelProperty(value = "透包机产量")
    private Double tbjQty;
 
    /**
     * 透包机剔除好包
     */
    @ExcelProperty(value = "透包机剔除好包")
    private Double tbjGdQty;
 
    /**
     * 透包机剔除坏包
     */
    @ExcelProperty(value = "透包机剔除坏包")
    private Double tbjBadQty;
 
    /**
     * 排包机产量
     */
    @ExcelProperty(value = "排包机产量")
    private Double pbjQty;
 
    /**
     * 班次
     */
    @ExcelProperty(value = "班次")
    private Integer shift;
 
    /**
     * 设备
     */
    @ExcelProperty(value = "设备")
    private Integer equNo;
 
 
}