yangys
2025-08-22 9810791a41d381a10451f3e9770cfcfedf98e886
blade-service/blade-mdm/src/main/java/org/springblade/mdm/program/vo/NcNodeQueryVO.java
@@ -4,17 +4,26 @@
import lombok.Getter;
import lombok.Setter;
import org.springblade.mdm.commons.vo.BaseVO;
import org.springframework.format.annotation.DateTimeFormat;
import java.time.LocalDateTime;
@Schema(description = "首页 树查询参数对象")
@Schema(description = "首页树查询参数对象")
@Setter
@Getter
public class NcNodeQueryVO {
   @Schema(description = "节点名称(查询关键字)")
   private String name;
   @Schema(description = "程序状态(试切1;固化2;偏离3),多选逗号分隔")
   private String programStatus;
   @Schema(description = "节点类型,字典(程序节点类型nc_node_type)")
   private String nodeType;
   @Schema(description = "零组件号")
   private String drawingNo;
   @DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss")
   @Schema(description = "起始时间")
   private LocalDateTime createTimeBegin;
   @DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss")
   @Schema(description = "结束时间")
   private LocalDateTime createTimeEnd;
}