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; @Schema(description = "首页 树查询参数对象") @Setter @Getter public class NcNodeQueryVO { @Schema(description = "节点名称(查询关键字)") private String name; @Schema(description = "节点类型,字典(程序节点类型nc_node_type)") private String nodeType; }