yangys
2025-09-18 0d61b9bfca526e9c3da2209de8f9f367e76fd013
blade-service/blade-mdm/src/main/java/org/springblade/mdm/program/entity/NcNode.java
@@ -43,7 +43,11 @@
   /**
    * 加工机床
    */
   public static final String TYPE_MACHINE_CODE = "50";
   //public static final String TYPE_MACHINE_CODE = "50";
   /**
    * 加工机床
    */
   public static final String TYPE_MACHINE_GROUP = "50";
   /**
    * 程序包名
    */
@@ -247,4 +251,16 @@
    public boolean hasLocked() {
      return this.isLocked != null && this.isLocked == LOCKED;
    }
   public String subNodeParentIds(){
      return this.parentIds+","+this.getId();
   }
   /**
    * 组装程序名称
    * @return 程序名称
    */
   public String programName(){
      return this.drawingNo+"-"+this.getProcessNo()+"-"+this.getProcessEdition();
   }
}