#
vincentlu
2025-01-10 bf69ac8c77ba9598b86b72f7b674d96de8af780b
zy-acs-manager/src/main/java/com/zy/acs/manager/core/service/LaneService.java
@@ -227,9 +227,9 @@
            return true;
        }
        Code parentCode = codeService.selectByData(parent);
        Code currentCode = codeService.selectByData(current);
        Code neighborCode = codeService.selectByData(neighbor);
        Code parentCode = codeService.getCacheByData(parent);
        Code currentCode = codeService.getCacheByData(current);
        Code neighborCode = codeService.getCacheByData(neighbor);
        double direction1 = this.calculateDirection(parentCode, currentCode);
        double direction2 = this.calculateDirection(currentCode, neighborCode);