package com.zy.acs.manager.core.service; import com.zy.acs.manager.manager.entity.Segment; import com.zy.acs.manager.manager.service.SegmentService; import lombok.extern.slf4j.Slf4j; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.stereotype.Service; @Slf4j @Service public class TransferStationHandler { @Autowired private SegmentService segmentService; public boolean isSegDelayAtSta(Segment segment) { return false; } }