package com.hai.service.impl; import com.hai.dao.HighGasOilPriceMapper; import com.hai.entity.HighGasOilGunNoExample; import com.hai.entity.HighGasOilPrice; import com.hai.entity.HighGasOilPriceExample; import com.hai.enum_type.GasOilPriceStatusEnum; import com.hai.service.HighGasOilPriceService; import org.apache.commons.collections4.MapUtils; import org.springframework.stereotype.Service; import javax.annotation.Resource; import java.util.List; import java.util.Map; @Service("highGasOilPriceService") public class HighGasOilPriceServiceImpl implements HighGasOilPriceService { @Resource private HighGasOilPriceMapper highGasOilPriceMapper; @Override public void editGasOilPrice(HighGasOilPrice highGasOilPrice) { if (highGasOilPrice.getId() != null) { highGasOilPriceMapper.updateByPrimaryKey(highGasOilPrice); } else { highGasOilPrice.setStatus(GasOilPriceStatusEnum.status1.getStatus()); highGasOilPriceMapper.insert(highGasOilPrice); } } @Override public HighGasOilPrice getGasOilPriceById(Long id) { return highGasOilPriceMapper.selectByPrimaryKey(id); } @Override public HighGasOilPrice getGasOilPriceByStoreAndOilNo(Long storeId, String oilNo) { HighGasOilPriceExample example = new HighGasOilPriceExample(); example.createCriteria().andMerchantStoreIdEqualTo(storeId).andOilNoEqualTo(oilNo).andStatusNotEqualTo(0); List list = highGasOilPriceMapper.selectByExample(example); if (list.size() > 0) { return list.get(0); } return null; } @Override public List getGasOilPriceByStore(Long storeId) { HighGasOilPriceExample example = new HighGasOilPriceExample(); example.createCriteria().andMerchantStoreIdEqualTo(storeId).andStatusNotEqualTo(0); return highGasOilPriceMapper.selectByExample(example); } @Override public List getPriceListByRegionAndOilNo(Long regionId, String oilNo) { return highGasOilPriceMapper.selectPriceListByRegionAndOilNo(regionId,oilNo); } @Override public List> getStoreListByOilNo(String storeName,Long regionId, String oilNoName , String sourceType) { return highGasOilPriceMapper.selectStoreListByOilNo(storeName,regionId,oilNoName , sourceType); } @Override public Map recentGasStation(String longitude, String latitude) { return highGasOilPriceMapper.recentGasStation(longitude, latitude); } @Override public List getGasOilPriceList(Map map) { HighGasOilPriceExample example = new HighGasOilPriceExample(); HighGasOilPriceExample.Criteria criteria = example.createCriteria(); if (MapUtils.getInteger(map, "oilType") != null) { criteria.andOilTypeEqualTo(MapUtils.getInteger(map, "oilType")); } criteria.andStatusEqualTo(1); return highGasOilPriceMapper.selectByExample(example); } }