yangys
2025-09-17 1e2b04fabbbc4b1ae37d7951068d7ab235f5b5f9
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
package org.springblade.mdm.flow.service;
 
import io.swagger.v3.oas.annotations.media.Schema;
import lombok.Data;
import org.springblade.core.tool.utils.Func;
import org.springblade.mdm.flow.constants.FlowContants;
 
import java.time.LocalDate;
 
/**
 * 派工流程的程序树形
 */
@Data
public class FlowProgramProperties {
    @Schema(description = "零组件/图号")
    private String title;
    @Schema(description = "零组件/图号")
    private String drawingNo;
    @Schema(description = "图号版次/设计版次")
    private String drawingNoEdition;
    @Schema(description = "工序号")
    private String processNo;
    @Schema(description = "工序名称")
    private String processName;
    @Schema(description = "产品型号")
    private String productModel;
    @Schema(description = "工序版次")
    private String processEdition;
 
    @Schema(description = "工艺版次")
    private String craftEdition;
 
    @Schema(description = "设备编号")
    private String machineCode;
    @Schema(description = "机床组代码")
    private String machineGroupCode;
    @Schema(description = "设备型号")
    private String machineMode;
 
    @Schema(description = "计划锁定时间(天)")
    private Integer planLockDays;
 
    @Schema(description = "计划开工时间")
    private LocalDate planStartTime;
 
    @Schema(description = "是否有固化程序")
    private String hasCuredProgram;
 
    @Schema(description = "固化程序程序节点id(如果有)")
    private Long curedNodeId;
 
    @Schema(description = "程序程序节点id,能确定节点id的流程会有该属性")
    private Long nodeId;
 
    @Schema(description = "流程实例id")
    private String processInstanceId;
 
    @Schema(description = "流程定义key")
    private String processDefinitionKey;
    @Schema(description = "工序版次是否一致")
    private String isProcessEditionSame;
 
    @Schema(description = "偏离单号")
    private String deviation;
 
    @Schema(description = "程序是否可用判定:Y/N")
    private String cureProgramUseable;
 
    @Schema(description = "专业组长id")
    private Long teamLeaderId;
    @Schema(description = "默认编程员id")
    private Long programmerId;
    @Schema(description = "默认校对员id")
    private Long checkerId;
    @Schema(description = "默认审核高师ID")
    private Long seniorId;
 
    @Schema(description = "实际编程员id")
    private Long actProgrammerId;
 
    @Schema(description = "是否临时流程:Y/N")
    private String isTempFlow;
 
    @Schema(description = "数控程序编号")
    private String programNo;
    @Schema(description = "实际编程员姓名")
    private String programmerName;
    @Schema(description = "实际校对姓名")
    private Long actCheckerId;
    @Schema(description = "实际校对姓名")
    private Long actSeniorId;
 
 
 
    @Schema(description = "现场编制标记")
    private String programOnMachine;
}