干燥机配套车间生产管理系统/云平台服务端
bsw215583320
2024-04-16 c2fccb01b972176dc3da5a497b5e904025e9e98d
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
197
198
199
200
201
202
203
204
205
206
207
package org.jeecg.modules.dry.entity;
 
import java.io.Serializable;
import java.io.UnsupportedEncodingException;
import java.util.Date;
import java.math.BigDecimal;
import com.baomidou.mybatisplus.annotation.IdType;
import com.baomidou.mybatisplus.annotation.TableId;
import com.baomidou.mybatisplus.annotation.TableName;
import com.baomidou.mybatisplus.annotation.TableLogic;
import lombok.Data;
import com.fasterxml.jackson.annotation.JsonFormat;
import org.springframework.format.annotation.DateTimeFormat;
import org.jeecgframework.poi.excel.annotation.Excel;
import org.jeecg.common.aspect.annotation.Dict;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.EqualsAndHashCode;
import lombok.experimental.Accessors;
 
/**
 * @Description: 生产操作记录
 * @Author: jeecg-boot
 * @Date:   2023-06-26
 * @Version: V1.0
 */
@Data
@TableName("dry_prod_record")
@Accessors(chain = true)
@EqualsAndHashCode(callSuper = false)
@ApiModel(value="dry_prod_record对象", description="生产操作记录")
public class DryProdRecord implements Serializable {
    private static final long serialVersionUID = 1L;
 
    /**id*/
    @TableId(type = IdType.ASSIGN_ID)
    @ApiModelProperty(value = "id")
    private String id;
    /**品名*/
    @Excel(name = "品名", width = 15)
    @ApiModelProperty(value = "品名")
    private String reportHeadName;
    /**批次*/
    @Excel(name = "批次", width = 15)
    @ApiModelProperty(value = "批次")
    private String reportHeadBatch;
    /**数量*/
    @Excel(name = "数量", width = 15)
    @ApiModelProperty(value = "数量")
    private String reportHeadNum;
    /**设备*/
    @Excel(name = "设备", width = 15)
    @ApiModelProperty(value = "设备")
    private String reportHeadMachine;
    /**接料人*/
    @Excel(name = "接料人", width = 15)
    @ApiModelProperty(value = "接料人")
    private String reportHeadAccepter;
    /**生产日期*/
    @Excel(name = "生产日期", width = 15, format = "yyyy-MM-dd")
    @JsonFormat(timezone = "GMT+8",pattern = "yyyy-MM-dd")
    @DateTimeFormat(pattern="yyyy-MM-dd")
    @ApiModelProperty(value = "生产日期")
    private Date reportHeadDate;
    /**班组长*/
    @Excel(name = "班组长", width = 15)
    @ApiModelProperty(value = "班组长")
    private String reportHeadLeader;
    /**工艺员*/
    @Excel(name = "工艺员", width = 15)
    @ApiModelProperty(value = "工艺员")
    private String reportHeadTecher;
    /**生产现场*/
    @Excel(name = "生产现场", width = 15)
    @ApiModelProperty(value = "生产现场")
    private Integer reportCheckField;
    /**执行文件*/
    @Excel(name = "执行文件", width = 15)
    @ApiModelProperty(value = "执行文件")
    private Integer reportCheckFile;
    /**物料标示*/
    @Excel(name = "物料标示", width = 15)
    @ApiModelProperty(value = "物料标示")
    private Integer reportCheckTag;
    /**称量器具*/
    @Excel(name = "称量器具", width = 15)
    @ApiModelProperty(value = "称量器具")
    private Integer reportCheckTool;
    /**检查人*/
    @Excel(name = "检查人", width = 15)
    @ApiModelProperty(value = "检查人")
    private String reportCheckMan;
    /**检查情况*/
    @Excel(name = "检查情况", width = 15)
    @ApiModelProperty(value = "检查情况")
    private Integer reportCheckStatus;
    /**QA*/
    @Excel(name = "QA", width = 15)
    @ApiModelProperty(value = "QA")
    private String reportCheckQa;
    /**异常记录*/
    @Excel(name = "异常记录", width = 15)
    @ApiModelProperty(value = "异常记录")
    private String reportCheckRecord;
    /**外观检查*/
    @Excel(name = "外观检查", width = 15)
    @ApiModelProperty(value = "外观检查")
    private Integer reportProductView;
    /**吹风*/
    @Excel(name = "吹风", width = 15)
    @ApiModelProperty(value = "吹风")
    private Integer reportProductWind;
    /**晒*/
    @Excel(name = "晒", width = 15)
    @ApiModelProperty(value = "晒")
    private Integer reportProductSun;
    /**低温干燥*/
    @Excel(name = "低温干燥", width = 15)
    @ApiModelProperty(value = "低温干燥")
    private Integer reportProductLowDry;
    /**干燥*/
    @Excel(name = "干燥", width = 15)
    @ApiModelProperty(value = "干燥")
    private Integer reportProductDry;
    /**开始时间*/
    @Excel(name = "开始时间", width = 15)
    @ApiModelProperty(value = "开始时间")
    private String reportProductStart;
    /**结束时间*/
    @Excel(name = "结束时间", width = 15)
    @ApiModelProperty(value = "结束时间")
    private String reportProductEnd;
    /**干燥总时间*/
    @Excel(name = "干燥总时间", width = 15)
    @ApiModelProperty(value = "干燥总时间")
    private Integer reportProductTotal;
    /**干燥检查*/
    @Excel(name = "干燥检查", width = 15)
    @ApiModelProperty(value = "干燥检查")
    private Integer reportProductCheck;
    /**操作人*/
    @Excel(name = "操作人", width = 15)
    @ApiModelProperty(value = "操作人")
    private String reportProductMan1;
    /**复核人*/
    @Excel(name = "复核人", width = 15)
    @ApiModelProperty(value = "复核人")
    private String reportProductMan2;
    /**操作后重量*/
    @Excel(name = "操作后重量", width = 15)
    @ApiModelProperty(value = "操作后重量")
    private Double reportProductWeight;
    /**废料数量*/
    @Excel(name = "废料数量", width = 15)
    @ApiModelProperty(value = "废料数量")
    private Double reportProductWaste;
    /**收率*/
    @Excel(name = "收率", width = 15)
    @ApiModelProperty(value = "收率")
    private Double reportProductUse;
    /**QA*/
    @Excel(name = "QA", width = 15)
    @ApiModelProperty(value = "QA")
    private String reportProductQa;
    /**设备清理*/
    @Excel(name = "设备清理", width = 15)
    @ApiModelProperty(value = "设备清理")
    private Integer reportCleanMachine;
    /**废料清理*/
    @Excel(name = "废料清理", width = 15)
    @ApiModelProperty(value = "废料清理")
    private Integer reportCleanWaste;
    /**工具清理*/
    @Excel(name = "工具清理", width = 15)
    @ApiModelProperty(value = "工具清理")
    private Integer reportCleanTool;
    /**门窗清理*/
    @Excel(name = "门窗清理", width = 15)
    @ApiModelProperty(value = "门窗清理")
    private Integer reportCleanDoor;
    /**箱体清理*/
    @Excel(name = "箱体清理", width = 15)
    @ApiModelProperty(value = "箱体清理")
    private Integer reportCleanBox;
    /**生产记录清理*/
    @Excel(name = "生产记录清理", width = 15)
    @ApiModelProperty(value = "生产记录清理")
    private Integer reportCleanRecord;
    /**清场日期*/
    @Excel(name = "清场日期", width = 15, format = "yyyy-MM-dd")
    @JsonFormat(timezone = "GMT+8",pattern = "yyyy-MM-dd")
    @DateTimeFormat(pattern="yyyy-MM-dd")
    @ApiModelProperty(value = "清场日期")
    private Date reportCleanDate;
    /**清场人*/
    @Excel(name = "清场人", width = 15)
    @ApiModelProperty(value = "清场人")
    private String reportCleanMan;
    /**清场确认*/
    @Excel(name = "清场确认", width = 15)
    @ApiModelProperty(value = "清场确认")
    private Integer reportCleanConfirm;
    /**QA*/
    @Excel(name = "QA", width = 15)
    @ApiModelProperty(value = "QA")
    private String reportCleanQa;
}