mirror of
https://codeup.aliyun.com/67c68d4e484ca2f0a13ac3c1/ydc/jsowell-charger-web.git
synced 2026-04-23 20:45:10 +08:00
update 对接内蒙古平台
This commit is contained in:
@@ -65,4 +65,6 @@ public interface ThirdpartySecretInfoMapper {
|
||||
ThirdPartySecretInfoVO queryByOperatorId(String theirOperatorId);
|
||||
|
||||
ThirdPartySecretInfoVO queryByThirdPlatformType(String thirdPlatformType);
|
||||
|
||||
List<ThirdPartySecretInfoVO> queryStationToPlatformList(String stationId);
|
||||
}
|
||||
|
||||
@@ -60,7 +60,24 @@ public interface ThirdpartySecretInfoService {
|
||||
*/
|
||||
public int deleteThirdpartySecretInfoById(Long id);
|
||||
|
||||
/**
|
||||
* 通过组织结构代码,查询平台密钥配置信息
|
||||
* @param theirOperatorId 组织结构代码
|
||||
* @return
|
||||
*/
|
||||
ThirdPartySecretInfoVO queryByOperatorId(String theirOperatorId);
|
||||
|
||||
/**
|
||||
* 通过第三方平台类型,查询平台密钥配置信息
|
||||
* @param thirdPlatformType 第三方平台类型 {@link com.jsowell.common.enums.thirdparty.ThirdPlatformTypeEnum}
|
||||
* @return
|
||||
*/
|
||||
ThirdPartySecretInfoVO queryByThirdPlatformType(String thirdPlatformType);
|
||||
|
||||
/**
|
||||
* 查询站点对接第三方平台信息列表
|
||||
* @param stationId 站点id
|
||||
* @return
|
||||
*/
|
||||
List<ThirdPartySecretInfoVO> queryStationToPlatformList(String stationId);
|
||||
}
|
||||
|
||||
@@ -127,4 +127,10 @@ public class ThirdpartySecretInfoServiceImpl implements ThirdpartySecretInfoServ
|
||||
}
|
||||
return result;
|
||||
}
|
||||
|
||||
@Override
|
||||
public List<ThirdPartySecretInfoVO> queryStationToPlatformList(String stationId) {
|
||||
List<ThirdPartySecretInfoVO> list = thirdpartySecretInfoMapper.queryStationToPlatformList(stationId);
|
||||
return list;
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user