| | |
| | | { |
| | | |
| | | List<DaPassingStationVO> result = new ArrayList<>(); |
| | | DateTimeFormatter formatter = DateTimeFormatter.ofPattern("yyyy-MM-dd HH:mm:ss"); |
| | | |
| | | LocalDateTime startTime = LocalDate.now().atStartOfDay(); |
| | | LocalDateTime endTime = LocalDate.now().plusDays(1).atStartOfDay(); |
| | | String s1 = startTime.format(formatter); |
| | | String s2 = endTime.format(formatter); |
| | | daPassingStationCollection.setStartTime(s1); |
| | | daPassingStationCollection.setEndTime(s2); |
| | | List<DaPassingStationCollection> list = daPassingStationCollectionMapper.selectDaPassingStationCollectionList(daPassingStationCollection); |
| | | //筛除节拍为空的数据 |
| | | list = list.stream().filter(x -> StringUtils.isNotEmpty(x.getBeatTime())).collect(Collectors.toList()); |
| | |
| | | rmRepairRecordMapper.insertRmRepairRecord(rmRepairRecord); |
| | | } |
| | | } |
| | | @Override |
| | | public String SelectSN(String SNcode){ |
| | | return "1"; |
| | | |
| | | // --订单排产 |
| | | // select * from bs_order_scheduling where engine_no='2V91Y-F RA182118' |
| | | // |
| | | // --工艺路线子表信息 |
| | | // select * from bs_technology_route_child_info where route_code='H_191S' |
| | | // |
| | | // --返修数据 |
| | | // select * from rm_repair_record where box_code='2V91Y-F RA182118' |
| | | // |
| | | // --过站采集 |
| | | // select * from da_passing_station_collection --where sfc_code='2V91Y-F RA182118' |
| | | } |
| | | } |