yangys
2025-07-07 4301ffcfa7d715d7341cb77ba29dee24366fb2a3
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
package org.springblade.mdm.program.vo;
 
import io.swagger.v3.oas.annotations.media.Schema;
import lombok.Getter;
import lombok.Setter;
 
import java.time.LocalDateTime;
import java.util.List;
 
/**
 * 在工控网导入MDM程序
 */
@Setter
@Getter
@Schema(description = "MDM导入数据")
public class MdmProgramImportVO {
    @Schema(description = "文件数据库编号(数控程序的id)")
    private Long id;
 
    @Schema(description = "程序编号")
    private String code;
    @Schema(description = "程序名称")
    private String name;
    private long ncNodeId;
 
    @Schema(description = "同名绑定节点id")
    private Long bindNcNodeId;
 
    @Schema(description = "文件地址")
    private String url;
 
    @Schema(description = "文件类型")
    private String category;
 
    @Schema(description = "是否为文本类型")
    private Boolean isTextFile;
 
    /**
     * 工序,如“精铣”
     */
    //private String processName;
    /**
     * 备注
     */
    //private String remark;
 
    @Schema(description = "设备(机床)编码")
    private String machineCode;
 
    @Schema(description = "图号")
    private String partNo;
 
    /**
     * 描述
     */
    @Schema(description = "描述")
    private String description;
 
    @Schema(description = "是否固化")
    private Integer isCured;
 
 
    @Schema(description = "工序版次")
    private String processEdition;
 
    @Schema(description = "是否最新版次,1:最新版次;0:历史版次")
    private Integer isLastEdition = 1;
 
    @Schema(description = "是否锁定")
    private Integer isLocked = 0;
 
    @Schema(description = "是否测试程序")
    private Integer isTest = 0;
 
    private String md5;
 
}