add 联联平台请求设备认证接口

This commit is contained in:
Lemon
2023-04-24 13:55:33 +08:00
parent 1227ed92c5
commit a18c693d4c
7 changed files with 169 additions and 2 deletions

View File

@@ -1,7 +1,9 @@
package com.jsowell.thirdparty.service;
import com.jsowell.pile.dto.QueryEquipmentDTO;
import com.jsowell.thirdparty.domain.StationStatsInfo;
import com.jsowell.pile.dto.QueryStationInfoDTO;
import com.jsowell.thirdparty.vo.EquipmentAuthVO;
import com.jsowell.thirdparty.vo.LianLianPageResponse;
import java.util.List;
@@ -31,5 +33,18 @@ public interface LianLianService {
LianLianPageResponse query_station_status(List<String> StationIDs);
/**
* 查询统计信息
* @param dto
* @return
*/
StationStatsInfo query_station_stats(QueryStationInfoDTO dto);
/**
* 请求设备认证
* @param dto
* @return
*/
EquipmentAuthVO query_equip_auth(QueryEquipmentDTO dto);
}