| | |
| | | @Setter |
| | | @Getter |
| | | @EqualsAndHashCode |
| | | public class ProgramNodeVO extends BaseVO { |
| | | public class ProgramNodeVO { |
| | | @Schema(description = "节点id") |
| | | private String id; |
| | | @Schema(description = "节点名称") |
| | | private String name; |
| | | @Schema(description = "父ID,根节点父id=0") |
| | |
| | | |
| | | @Schema(description = "节点类型,字典(程序节点类型nc_node_type)") |
| | | private String nodeType; |
| | | |
| | | @Schema(description = "目录类型:REC/SEND/TEMP") |
| | | private String dirType; |
| | | @Schema(description = "机床编码") |
| | | private String machineCode; |
| | | @Schema(description = "是否有子节点") |
| | | private Boolean hasChildren; |
| | | |