yangys
2025-06-30 813f0f6d391b7f24682204c22c059ef69b124fa6
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
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;
 
/**
 * 成功徐节点的VO
 */
@Setter
@Getter
public class NcNodeProgramVO extends BaseVO {
    @Schema(description = "节点名称")
    private String name;
    @Schema(description = "父ID,根节点父id=0")
    private Long parentId;
    @Schema(description = "设备编号")
    private String machineCode;
    @Schema(description = "节点类型,字典(程序节点类型nc_node_type)")
    private String nodeType;
    @Schema(description = "描述")
    private String description;
    @Schema(description = "备注")
    private String remark;
 
    @Schema(description = "图号版次")
    private String drawingNoEdition;
 
    @Schema(description = "工序,如“精铣”")
    private String processName;
 
    @Schema(description = "工艺版次")
    private String craftEdition;
 
    @Schema(description = "零组件号/图号")
    private String partNo;
}