|
|
|
@ -54,10 +54,13 @@ public class MesProductionDataServiceImpl implements IMesProductionDataService {
|
|
|
|
|
break;
|
|
|
|
|
case "1004":
|
|
|
|
|
adsorptionTankTeamStatistics = teamStatisticsMapper.getAdsorptionTankTeamStatistics(this.in_id);
|
|
|
|
|
break;
|
|
|
|
|
case "1006":
|
|
|
|
|
adsorptionTankTeamStatistics = teamStatisticsMapper.getAdsorptionTankTeamStatistics6(this.in_id);
|
|
|
|
|
break;
|
|
|
|
|
case "1009":
|
|
|
|
|
adsorptionTankTeamStatistics = teamStatisticsMapper.getAdsorptionTankTeamStatistics9(this.in_id);
|
|
|
|
|
break;
|
|
|
|
|
default:
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
@ -74,9 +77,21 @@ public class MesProductionDataServiceImpl implements IMesProductionDataService {
|
|
|
|
|
@Override
|
|
|
|
|
@Select("")
|
|
|
|
|
public List<MesHourProdutionStatistics> getMesHourProdutionStatisticsList(String locationNumber) {
|
|
|
|
|
QueryWrapper<MesHourProdutionStatistics> wrapper = new QueryWrapper<MesHourProdutionStatistics>();
|
|
|
|
|
wrapper.eq("POSIONID",locationNumber);
|
|
|
|
|
List<MesHourProdutionStatistics> mesHourProdutionStatistics = hourProdutionStatisticsMapper.selectList(wrapper);
|
|
|
|
|
List<MesHourProdutionStatistics> mesHourProdutionStatistics = new ArrayList<>();
|
|
|
|
|
switch (locationNumber) {
|
|
|
|
|
case "1001":
|
|
|
|
|
break;
|
|
|
|
|
case "1004":
|
|
|
|
|
break;
|
|
|
|
|
case "1006":
|
|
|
|
|
mesHourProdutionStatistics = hourProdutionStatisticsMapper.getMesHourProdutionStatisticsList6(this.in_id);
|
|
|
|
|
break;
|
|
|
|
|
case "1009":
|
|
|
|
|
mesHourProdutionStatistics = hourProdutionStatisticsMapper.getMesHourProdutionStatisticsList9(this.in_id);
|
|
|
|
|
break;
|
|
|
|
|
default:
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
return mesHourProdutionStatistics;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|