From cbdafba5d230846da2abe940b7075bf8226c9088 Mon Sep 17 00:00:00 2001 From: "autumn.g@foxmail.com" Date: Sat, 20 Jan 2024 16:39:40 +0800 Subject: [PATCH] update --- .../hainan/service/HaiNanChargeService.java | 21 +++++++++++++++++++ .../AbsInterfaceWithPlatformService.java | 11 ++++++++++ 2 files changed, 32 insertions(+) diff --git a/jsowell-thirdparty/src/main/java/com/jsowell/thirdparty/hainan/service/HaiNanChargeService.java b/jsowell-thirdparty/src/main/java/com/jsowell/thirdparty/hainan/service/HaiNanChargeService.java index 31769e45b..6cff4bd6b 100644 --- a/jsowell-thirdparty/src/main/java/com/jsowell/thirdparty/hainan/service/HaiNanChargeService.java +++ b/jsowell-thirdparty/src/main/java/com/jsowell/thirdparty/hainan/service/HaiNanChargeService.java @@ -10,6 +10,7 @@ import com.jsowell.pile.dto.QueryStationInfoDTO; import com.jsowell.pile.vo.base.ThirdPartyStationInfoVO; import com.jsowell.pile.vo.uniapp.BillingPriceVO; import com.jsowell.thirdparty.hainan.domain.HNStationInfo; +import com.jsowell.thirdparty.lianlian.dto.CommonParamsDTO; import com.jsowell.thirdparty.platform.AbsInterfaceWithPlatformService; import org.apache.commons.collections4.CollectionUtils; import org.springframework.stereotype.Service; @@ -138,4 +139,24 @@ public class HaiNanChargeService extends AbsInterfaceWithPlatformService { return null; } + /** + * 查询统计信息 + * + * @param dto + */ + @Override + public Map queryStationStats(QueryStationInfoDTO dto) { + return null; + } + + /** + * 身份认证 + * + * @param dto + */ + @Override + public Map generateToken(CommonParamsDTO dto) { + return null; + } + } diff --git a/jsowell-thirdparty/src/main/java/com/jsowell/thirdparty/platform/AbsInterfaceWithPlatformService.java b/jsowell-thirdparty/src/main/java/com/jsowell/thirdparty/platform/AbsInterfaceWithPlatformService.java index b43808573..21aa303ab 100644 --- a/jsowell-thirdparty/src/main/java/com/jsowell/thirdparty/platform/AbsInterfaceWithPlatformService.java +++ b/jsowell-thirdparty/src/main/java/com/jsowell/thirdparty/platform/AbsInterfaceWithPlatformService.java @@ -4,6 +4,7 @@ import com.jsowell.pile.dto.QueryStationInfoDTO; import com.jsowell.pile.service.PileBillingTemplateService; import com.jsowell.pile.service.PileStationInfoService; import com.jsowell.pile.service.ThirdPartyPlatformConfigService; +import com.jsowell.thirdparty.lianlian.dto.CommonParamsDTO; import com.jsowell.thirdparty.zhongdianlian.service.ZDLService; import org.springframework.beans.factory.annotation.Autowired; @@ -44,4 +45,14 @@ public abstract class AbsInterfaceWithPlatformService { * 6.5 设备接口状态查询 */ public abstract Map queryStationStatus(QueryStationInfoDTO dto); + + /** + * 查询统计信息 + */ + public abstract Map queryStationStats(QueryStationInfoDTO dto); + + /** + * 身份认证 + */ + public abstract Map generateToken(CommonParamsDTO dto); }