yangys
2025-06-29 4272f2232fd97d9862bc53e583612c8a4bf82ee4
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
package org.springblade.mdm.program.vo;
 
import io.swagger.v3.oas.annotations.media.Schema;
import lombok.Getter;
import lombok.Setter;
import org.springblade.mdm.commons.vo.BaseVO;
import org.springframework.web.multipart.MultipartFile;
 
/**
 * NC程序VO
 */
@Setter
@Getter
public class NcProgramUploadVO extends BaseVO {
    @Schema(description = "所属节点id")
    private Long nodeId;
 
    @Schema(description = "设备编号")
    private String machineCode;
    @Schema(description = "设备编号")
    private MultipartFile file;
 
    @Schema(description = "图号")
    private String drawingNo;
 
 
    @Schema(description = "工序,如“精铣”")
    private String processName;
 
    @Schema(description = "文件分类,使用字典(node_file_type)")
    private String category;
}