wangfei
2024-09-20 ff24cc446cc9fe43aac388912074ed98e73a8ff5
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
package com.mes.pp.entity;
 
import com.baomidou.mybatisplus.annotation.IdType;
import com.baomidou.mybatisplus.annotation.TableId;
import java.time.LocalDateTime;
import java.io.Serializable;
 
import com.fasterxml.jackson.annotation.JsonFormat;
import lombok.Data;
import lombok.EqualsAndHashCode;
 
/**
 * <p>
 * 
 * </p>
 *
 * @author wu
 * @since 2024-06-26
 */
@Data
@EqualsAndHashCode(callSuper = false)
public class ReportingWork implements Serializable {
 
    private static final long serialVersionUID = 1L;
 
    /**
     * <报工主表>
     */
      @TableId(value = "id", type = IdType.AUTO)
    private Long id;
 
    /**
     * 报工编号
     */
    private String reportingWorkId;
 
    /**
     * 销售单号
     */
    private String orderId;
 
    /**
     * 生产订单号
     */
    private String productionId;
 
    /**
     * 流程卡号
     */
    private String processId;
 
    /**
     * 本工序
     */
    private String thisProcess;
 
    /**
     * 设备编号
     */
    private byte[] deviceId;
 
    /**
     * 设备名称
     */
    private String deviceName;
 
    /**
     * 上工序
     */
    private String previousProcess;
 
    /**
     * 上工序数量
     */
    private Integer previousProcessQuantity;
 
    /**
     * 本工序数量
     */
    private Integer thisProcessQuantity;
 
    /**
     * 本工序完工数
     */
    private Integer thisCompletedQuantity;
 
    /**
     * 本工序次破数
     */
    private Integer thisWornQuantity;
 
    /**
     * 下工序
     */
    private String nextProcess;
 
    /**
     * 班次
     */
    private String classes;
 
    /**
     * 班组编号
     */
    private String teamsGroupsId;
 
    /**
     * 班组名称
     */
    private String teamsGroupsName;
 
    /**
     * 报工状态
     */
    private Integer reportingWorkState;
 
    /**
     * 审核人
     */
    private String reviewed;
 
    /**
     * 审核状态(默认0,审核通过1,不通过2,小于0删除)
     */
    private Integer reviewedState;
 
    /**
     * 备注
     */
    private String notes;
 
    /**
     * 质检员
     */
    private String qualityInspector;
 
    /**
     * 包装方式
     */
    private String packagingMethod;
 
    /**
     * 报工时间
     */
    private LocalDateTime reportingWorkTime;
 
    /**
     * 审核时间
     */
    private LocalDateTime examineTime;
 
    /**
     * 质检时间
     */
    private LocalDateTime qualityInsTime;
 
    /**
     * 创建者id
     */
    private String creatorId;
 
    /**
     * 创建者
     */
    private String creator;
 
    /**
     * 建立时间
     */
    @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8")
    private LocalDateTime createTime;
 
    /**
     * 修改时间
     */
    private LocalDateTime updateTime;
 
 
}