|
|
@ -5,10 +5,13 @@ import com.ruoyi.api.mapper.DapingMapper; |
|
|
|
import com.ruoyi.api.service.DapingService; |
|
|
|
import com.ruoyi.api.service.DapingService; |
|
|
|
import com.ruoyi.code.camera.domain.WaterPhotoInfo; |
|
|
|
import com.ruoyi.code.camera.domain.WaterPhotoInfo; |
|
|
|
import com.ruoyi.common.core.page.R; |
|
|
|
import com.ruoyi.common.core.page.R; |
|
|
|
import com.ruoyi.common.utils.StringUtils; |
|
|
|
|
|
|
|
import org.springframework.stereotype.Service; |
|
|
|
import org.springframework.stereotype.Service; |
|
|
|
|
|
|
|
|
|
|
|
import java.util.*; |
|
|
|
import java.util.ArrayList; |
|
|
|
|
|
|
|
import java.util.HashMap; |
|
|
|
|
|
|
|
import java.util.List; |
|
|
|
|
|
|
|
import java.util.Map; |
|
|
|
|
|
|
|
import java.util.stream.Collectors; |
|
|
|
|
|
|
|
|
|
|
|
@Service |
|
|
|
@Service |
|
|
|
public class DapingServiceImpl extends ServiceImpl<DapingMapper, WaterPhotoInfo> implements DapingService{ |
|
|
|
public class DapingServiceImpl extends ServiceImpl<DapingMapper, WaterPhotoInfo> implements DapingService{ |
|
|
@ -18,7 +21,12 @@ public class DapingServiceImpl extends ServiceImpl<DapingMapper, WaterPhotoInfo> |
|
|
|
*/ |
|
|
|
*/ |
|
|
|
@Override |
|
|
|
@Override |
|
|
|
public List<WaterPhotoInfo> getStationInfo() { |
|
|
|
public List<WaterPhotoInfo> getStationInfo() { |
|
|
|
return baseMapper.selectStationInfo(); |
|
|
|
return baseMapper.selectStationInfo().stream().filter(waterPhotoInfo -> { |
|
|
|
|
|
|
|
String imgName = waterPhotoInfo.getImgName(); |
|
|
|
|
|
|
|
String img = imgName.replace("\\", "/"); |
|
|
|
|
|
|
|
waterPhotoInfo.setImgName(img); |
|
|
|
|
|
|
|
return true; |
|
|
|
|
|
|
|
}).collect(Collectors.toList()); |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
/** |
|
|
|
/** |
|
|
|