liyong
4 天以前 0f792c9b3b88dc4b1b7b306f89e257d931d2d0bd
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
package cn.iocoder.yudao.module.mes.controller.admin.pro.route.vo.process;
 
import io.swagger.v3.oas.annotations.media.Schema;
import lombok.Data;
 
import java.time.LocalDateTime;
 
@Schema(description = "管理后台 - MES 工艺路线工序 Response VO")
@Data
public class MesProRouteProcessRespVO {
 
    @Schema(description = "编号", requiredMode = Schema.RequiredMode.REQUIRED, example = "1")
    private Long id;
 
    @Schema(description = "工艺路线编号", requiredMode = Schema.RequiredMode.REQUIRED, example = "1")
    private Long routeId;
 
    @Schema(description = "工序编号", requiredMode = Schema.RequiredMode.REQUIRED, example = "1")
    private Long processId;
 
    @Schema(description = "工序编码")
    private String processCode;
 
    @Schema(description = "工序名称")
    private String processName;
 
    @Schema(description = "序号", requiredMode = Schema.RequiredMode.REQUIRED, example = "1")
    private Integer sort;
 
    @Schema(description = "下一道工序编号")
    private Long nextProcessId;
 
    @Schema(description = "下一道工序名称")
    private String nextProcessName;
 
    @Schema(description = "与下一道工序关系", example = "0")
    private Integer linkType;
 
    @Schema(description = "准备时间(分钟)", example = "10")
    private Integer prepareTime;
 
    @Schema(description = "等待时间(分钟)", example = "5")
    private Integer waitTime;
 
    @Schema(description = "甘特图显示颜色", example = "#00AEF3")
    private String colorCode;
 
    @Schema(description = "是否关键工序", example = "false")
    private Boolean keyFlag;
 
    @Schema(description = "是否质检工序", example = "false")
    private Boolean checkFlag;
 
    @Schema(description = "是否倒冲(true=报工时按BOM自动扣料;false=不自动扣料)", example = "true")
    private Boolean backflushFlag;
 
    @Schema(description = "产出产品物料编号", example = "100")
    private Long outputItemId;
 
    @Schema(description = "产出产品物料编码")
    private String outputItemCode;
 
    @Schema(description = "产出产品物料名称")
    private String outputItemName;
 
    @Schema(description = "备注")
    private String remark;
 
    @Schema(description = "创建时间")
    private LocalDateTime createTime;
 
}