yangys
2025-08-02 b854c5cde81a88e8dea0b5df03219a2fcfef6ac6
blade-service/blade-mdm/src/main/java/org/springblade/mdm/program/entity/NcNode.java
@@ -9,6 +9,46 @@
@Getter
@TableName("mdm_nc_node")
public class NcNode extends BizEntity {
   /**
    * 节点类型: 程序状态 10
    */
   public static final String TYPE_PROGRAM_STATUS = "10";
   /*
   产品型号
    */
   public static final String TYPE_PRODUCT_MODEL = "15";
   /**
    * 节点类型: 零组件号/图号 10
    */
   public static final String TYPE_DRAWING_NO = "20";
   /**
    * 工艺版次
    *
    */
   public static final String TYPE_CRAFT_EDITION = "30";
   /**
    * 工序号
    *
    */
   public static final String TYPE_PROCESS_NO = "40";
   /**
    * 工序版次
    */
   public static final String TYPE_PROCESS_EDITION = "45";
   /**
    * 加工机床
    */
   public static final String TYPE_MACHINE_CODE = "50";
   /**
    * 程序包名
    */
   public static final String TYPE_PROGRAM_PACKAGE = "60";
   /**
    * 程序文件
    */
   public static final String TYPE_PROGRAM_FILE = "70";
   private String name;
   private Long parentId;
@@ -31,12 +71,12 @@
   /**
    * 工序版次
    */
   //private String processEdition;
   private String processEdition;
   /**
    * 工艺版次
    */
   //private String craftEdition;
   private String craftEdition;
   /**
    * 零组件号/图号
    */
@@ -44,7 +84,7 @@
   /**
    * 图号版次
    */
   //private String partNoEdition;
   private String drawingNoEdition;
   /**
    * 是否固化
@@ -65,6 +105,11 @@
   private String description;
   private String remark;
   //0808新增
   /**
    * 程序文件节点的数据
    */
   private String processNo;
   private String productModel;
}