This commit is contained in:
linfso 2024-07-13 18:23:04 +08:00
parent fdf002e44b
commit 6fea53dbab

View File

@ -187,9 +187,9 @@ public class EmisDestinationServiceImpl implements IEmisDestinationService
if(areaId!=null && areaId>0) {
EmisCountryArea emisCountryArea =emisCountryAreaMapper.selectEmisCountryAreaById(areaId);
if(emisCountryArea!=null){
EmisDestination emisDestination = new EmisDestination();
emisDestination.setSiteCode(emisCountryArea.getSiteCode());
emisDestination.setSiteName(emisCountryArea.getSiteName());
destination = new EmisDestination();
destination.setSiteCode(emisCountryArea.getSiteCode());
destination.setSiteName(emisCountryArea.getSiteName());
}
}