yangys
2025-08-23 88f640713525e88dac333ea3bf7e23e22891ab0f
blade-service/blade-mdm/src/main/java/org/springblade/mdm/program/entity/NcNode.java
@@ -211,7 +211,7 @@
      return this.isCured != null && this.isCured == 1;
   }
   public void upgradeVersionNUmber() {
   public void upgradeVersionNumber() {
      this.versionNumber = genNewVersionNumber();
   }
@@ -225,4 +225,12 @@
   public void unlock() {
      this.isLocked = UNLOCK;
   }
   /**
    * 是否已锁定
    * @return 是否
    */
    public boolean hasLocked() {
      return this.isLocked != null && this.isLocked == LOCKED;
    }
}