yangys
2025-06-17 ceb4fde6edb1f73bc45f54129432ec8068875b6d
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
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;
 
@Setter
@Getter
public class NcNodeVO extends BaseVO {
    @Schema(description = "节点名称")
    private String name;
    @Schema(description = "父ID")
    private Long parentId;
    @Schema(description = "节点类型,字典(程序节点类型nc_node_type)")
    private String nodeType;
 
}