update 报错未实现charge-common-api

This commit is contained in:
YAS\29473
2025-08-12 10:00:15 +08:00
8 changed files with 45 additions and 22 deletions

View File

@@ -105,5 +105,10 @@ public class OrderBasicInfoApiImpl implements OrderBasicInfoApi {
return orderBasicInfoService.tempGetOrderCodes(queryOrderDTO);
}
@Override
public OrderBasicInfo getOrderInfoByTransactionCode(String transactionCode) {
return null;
}
}

View File

@@ -4,6 +4,7 @@ import com.jsowell.common.service.thirdparty.domin.PileStationInfo;
import com.jsowell.common.service.thirdparty.dto.QueryStationInfoDTO;
import com.jsowell.common.service.thirdparty.tempservice.PileStationInfoApi;
import com.jsowell.common.service.thirdparty.vo.PileStationVO;
import com.jsowell.common.service.thirdparty.vo.ThirdPartyStationInfoVO;
import com.jsowell.pile.service.PileStationInfoService;
@@ -51,4 +52,14 @@ public class PileStationInfoApiImpl implements PileStationInfoApi {
return result;
}
@Override
public PileStationVO getStationInfoByPileConnectorCode(String pileConnectorCode) {
return null;
}
@Override
public PileStationVO getStationInfo(String stationId) {
return null;
}
}

View File

@@ -8,6 +8,7 @@ import org.apache.dubbo.config.annotation.DubboService;
import org.springframework.beans.BeanUtils;
import org.springframework.beans.factory.annotation.Autowired;
import java.util.Collections;
import java.util.List;
@DubboService(group = "thirdparty", version = "1.0.0")
@@ -68,4 +69,9 @@ public class ThirdpartySecretInfoApiImpl implements ThirdpartySecretInfoApi {
}
return stationInfoVOList;
}
@Override
public List<ThirdPartySecretInfoVO> queryStationToPlatformList(String stationId) {
return Collections.emptyList();
}
}