| | |
| | | package cn.gistack.sm.sjztmd.word.service; |
| | | |
| | | import cn.gistack.sm.sjztmd.vo.StationExport; |
| | | import cn.gistack.sm.sjztmd.vo.ZtResultInfo; |
| | | import cn.gistack.sm.sjztmd.vo.StationParams; |
| | | import cn.gistack.sm.sjztmd.word.vo.*; |
| | | import com.fasterxml.jackson.core.JsonProcessingException; |
| | | |
| | | import javax.servlet.http.HttpServletResponse; |
| | | import java.util.HashMap; |
| | | import java.util.List; |
| | | |
| | | public interface ISjztmdService { |
| | |
| | | * @param resCd |
| | | * @return |
| | | */ |
| | | TbWordVO getTbWordVO(String resCd); |
| | | HashMap<String,Object> getTbWordVO(String resCd); |
| | | |
| | | |
| | | List<TotalInfo> getTotalInfo(); |
| | |
| | | List<OverDetail> getOverDetailInfo(); |
| | | |
| | | List<SzInfo> getSzInfo(); |
| | | |
| | | List<StationExport> getWaterLevelInfo(HttpServletResponse response, StationParams params,String exportFunc); |
| | | |
| | | List<StationExport> getRainfallInfo(HttpServletResponse response, StationParams params, String exportFunc); |
| | | |
| | | List<StationExport> getVideoStationInfo(HttpServletResponse response, StationParams params, String exportFunc); |
| | | |
| | | List<StationExport> getImageStation(HttpServletResponse response, StationParams params, String exportFunc); |
| | | |
| | | List<StationExport> getOsmotic(HttpServletResponse response, StationParams params, String exportFunc); |
| | | } |