fire_point/src/main/java/com/xkrs/straw/service/FirePointService.java
2023-03-08 14:00:06 +08:00

31 lines
823 B
Java
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

package com.xkrs.straw.service;
public interface FirePointService {
// String downloadVipUserFilePoint(HttpServletRequest request, HttpServletResponse response);
// String downloadFirePoint(HttpServletRequest request, HttpServletResponse response, String ids);
/**
* 查询火点播报无token
*
* @param limit 最大数量
*/
String queryFirePointBroadcast(Integer limit);
/**
* 动态多条件查询
*/
String queryFirePoint(String token, String code, String startTime, String endTime, String satelliteType, String landType);
/**
* 查询今天的火点信息
*/
String selectTodayFirePoint(String token, String countyCode);
/**
* 根据火点编码查询火点信息
*/
String selectFirePointByCode(String fireCode);
}