blade-service/blade-mdm/src/main/java/org/springblade/mdm/program/service/NcNodeService.java
@@ -383,6 +383,12 @@ this.updateById(node); } @Transactional public void lock(Long id,String remark) { NcNode node = this.getById(id); node.lock(remark); this.updateById(node); } @Transactional public void unlock(Long id) { NcNode node = this.getById(id); node.unlock();