#
luxiaotao1123
2024-10-12 bb61bc0c22ae4ef9963ca00d23b5cf0c412f26f5
zy-acs-manager/src/main/java/com/zy/acs/manager/manager/service/RouteService.java
@@ -8,12 +8,12 @@
public interface RouteService extends IService<Route> {
    Route createRouteByCode(Code code0, Code code1);
    Route createRouteByCode(Code startCode, Code endCode);
    Route createRouteByCode(Code code0, Code code1, Integer direction, Long userId);
    Route createRouteByCode(Code startCode, Code endCode, Integer direction, Long userId);
    List<String> findCodeDataOfSingle(Long code);
    Route findByCodeOfBoth(Long code0, Long code1);
    Route findByCodeOfBoth(Long startCode, Long endCode);
}