廖井涛
2025-10-28 142ac0b41391560d03ecc8246c471bf9b8b1194a
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
package com.example.northglasserpclient.domain.po.sd;
 
import com.baomidou.mybatisplus.annotation.TableName;
import com.baomidou.mybatisplus.annotation.IdType;
import com.baomidou.mybatisplus.annotation.TableId;
import java.time.LocalDateTime;
import java.io.Serializable;
import lombok.Data;
import lombok.EqualsAndHashCode;
import lombok.experimental.Accessors;
 
/**
 * <p>
 * 
 * </p>
 *
 * @author guo
 * @since 2025-09-18
 */
@Data
@EqualsAndHashCode(callSuper = false)
@Accessors(chain = true)
@TableName("sd.order_process_detail")
public class OrderProcessDetail implements Serializable {
 
    private static final long serialVersionUID = 1L;
 
    /**
     * <报工流程明细表>
     */
    @TableId(value = "id", type = IdType.AUTO)
    private Long id;
 
    /**
     * 订单id
     */
    private String orderId;
 
    /**
     * 流程卡id
     */
    private String processId;
 
    /**
     * 订单序号
     */
    private Integer orderNumber;
 
    /**
     * 子产品序号
     */
    private Integer technologyNumber;
 
    /**
     * 工艺名称
     */
    private String process;
 
    /**
     * 完工总数量
     */
    private Integer reportingWorkNumCount;
 
    /**
     * 完工真实数量
     */
    private Integer reportingWorkNum;
 
    /**
     * 次破数量
     */
    private Integer brokenNum;
 
    private LocalDateTime createTime;
 
    private LocalDateTime updateTime;
 
 
}