yangys
2024-10-30 25db770e621f1259b8d5b7fd514207f7481c2d0f
smart-man-boot/src/main/java/com/qianwen/smartman/modules/mdc/service/impl/RealTimeDataServiceImpl.java
@@ -21,7 +21,7 @@
import com.qianwen.smartman.modules.mdc.vo.WorkstationVO;
import org.springframework.stereotype.Service;
@Service
@Service("oldRealTimeDataService")
public class RealTimeDataServiceImpl implements IRealTimeDataService {
    private final WorkstationMapper workstationMapper;
    private final IWorkstationOfMachineService workstationOfMachineService;
@@ -32,7 +32,7 @@
        this.workstationOfMachineService = workstationOfMachineService;
        this.dmpVariablesService = dmpVariablesService;
    }
    /*
    @Override
    public List<DmpStatusVariableVO> getWorkstationRealTimeStatus(WorkstationVO workstationVO) {
        List<Long> workstationIdList = workstationVO.getWorkstationIdList();
@@ -64,4 +64,5 @@
        List<DmpVariablesVO> dmpVariables = this.dmpVariablesService.getDmpVariablesByWorkstationId(Long.valueOf(workstationId.longValue()));
        return dmpVariables.stream().filter(DmpVariablesVO::getRealTimeData).collect(Collectors.toList());
    }
    */
}