yangys
2025-09-13 083df8d788c95c009a94378e620684eb5de2bd21
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
package org.springblade.mdm.program.vo;
 
import io.swagger.v3.oas.annotations.media.Schema;
import lombok.Getter;
import lombok.Setter;
import lombok.ToString;
 
import java.util.List;
 
/**
 * 在工控网导入MDM程序
 */
@Setter
@Getter
@ToString
@Schema(description = "MDM导入数据")
public class MdmProgramImportVO {
    @Schema(description = "文件数据库编号(数控程序的id)")
    private String id;
 
    @Schema(description = "程序编号")
    private String code;
    @Schema(description = "程序名称")
    private String name;
    private String filename;
 
    @Schema(description = "文件地址")
    private String fullPath;
 
 
 
    @Schema(description = "设备(机床)编码")
    private String machineCode;
 
    @Schema(description = "图号")
    private String drawingNo;
 
 
    @Schema(description = "程序状态")
    private String programStatus;
 
    @Schema(description = "发送目录")
    private String sendPath;
 
 
    private String md5;
 
    public List<String> files;
 
}