严智鑫
2024-08-23 86739d74c6a28421d6a92edd50b01953146adbad
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
package com.mes.pp.entity;
 
import com.baomidou.mybatisplus.annotation.IdType;
import com.baomidou.mybatisplus.annotation.TableId;
import java.time.LocalDateTime;
import com.baomidou.mybatisplus.annotation.TableField;
import java.io.Serializable;
import lombok.Data;
import lombok.EqualsAndHashCode;
 
/**
 * <p>
 * 
 * </p>
 *
 * @author wu
 * @since 2024-08-07
 */
@Data
@EqualsAndHashCode(callSuper = false)
public class FlowCard implements Serializable {
 
    private static final long serialVersionUID = 1L;
 
    /**
     * (工程号,2024.0302天机)
     */
      @TableId(value = "id", type = IdType.AUTO)
    private Long id;
 
    /**
     * 销售单号
     */
    private String orderId;
 
    /**
     * 生产订单号
     */
    private String productionId;
 
    /**
     * 流程卡号
     */
    private String processId;
 
    /**
     * 落架顺序
     */
    private String landingSequence;
 
    /**
     * 序号
     */
    private Integer orderNumber;
 
    /**
     * 工艺确认序号
     */
    private Integer technologyNumber;
 
    /**
     * 分架数量
     */
    private Integer quantity;
 
    /**
     * 以优化数量
     */
    private Integer optimizeQuantity;
 
    /**
     * 排版状态(默认0,1允许排版2优化占用)
     */
    private Integer layoutStatus;
 
    /**
     * 补片数量
     */
    private Integer numberPatches;
 
    /**
     * 最后工序报工 库存数量
     */
    private Integer inventoryQuantity;
 
    /**
     * 已入数量
     */
    private Integer receivedQuantity;
 
    /**
     * 补片编号
     */
    private String patchId;
 
    /**
     * 工程占用状态,0为占用1占用
     */
    private Integer engineeringOccupancy;
 
    /**
     * 工程号(2024.0302添加)
     */
    private String projectNo;
 
    /**
     * 包装前工序报工 库存数量
     */
    private Integer inventoryNumber;
 
    /**
     * 入库时间
     */
    private LocalDateTime storageTime;
 
    /**
     * 生产终止状态(默认0,1生产终止)
     */
    private Integer terminationStatus;
 
    /**
     * 打印状态
     */
    private Integer printStatus;
 
    /**
     * 备用键
     */
    private Integer alternateKey;
 
    /**
     * 分架员
     */
    private String founder;
 
    /**
     * 分架时间
     */
    @TableField("splitFrame_time")
    private LocalDateTime splitframeTime;
 
    /**
     * 层数
     */
    private Integer layersNumber;
 
    /**
     * 流程卡打印排序
     */
    private Integer sort;
 
    /**
     * 建立时间
     */
    private LocalDateTime createTime;
 
    /**
     * 修改时间
     */
    private LocalDateTime updateTime;
 
 
}