yangys
2025-08-16 8db9b68d0bf4b7ec2e80b580f5931a40788caac7
blade-service/blade-mdm/src/main/java/org/springblade/mdm/program/vo/NcNodeVO.java
@@ -36,19 +36,38 @@
   @Schema(description = "工序,如“精铣”,程序文件节点的属性")
   private String processName;
   @Schema(description = "工序版本,程序文件节点的属性")
   @Schema(description = "工序版本,程序包名节点的属性")
   private String processEdition;
   @Schema(description = "零组件号/图号,程序文件节点的属性")
   private String drawingNo;
   @Schema(description = "工序号")
   private String processNo;
   @Schema(description = "版本号,程序文件节点的属性")
   @Schema(description = "产品型号")
   private String productModel;
   @Schema(description = "零组件号/图号,程序包名节点的属性")
   private String drawingNo;
   @Schema(description = "图号版次")
   private String drawingNoEdition;
   @Schema(description = "工艺版次")
   private String craftEdition;
   @Schema(description = "是否固化")
   private Integer isCured;
   @Schema(description = "是否最新版本")
   private Integer isLastEdition;
   @Schema(description = "是否锁定")
   private Integer isLocked = 0;
   @Schema(description = "版本号,程序包名节点的属性")
   private Integer versionNumber;
   @Schema(description = "流程状态,程序文件节点的属性")
   @Schema(description = "流程状态,程序包名节点的属性")
   private Integer flowStatus;
   @Schema(description = "子节点")
   private List<NcNodeVO> children;
   @Schema(description = "流程实例id,程序包节点有此属性")
   private String processInstanceId;
   @Schema(description = "任务车间")
   private String workshop;
   public void addChildren(NcNodeVO node){
      if(children == null){
         children = new ArrayList<NcNodeVO>();