mirror of
https://codeup.aliyun.com/67c68d4e484ca2f0a13ac3c1/ydc/jsowell-charger-web.git
synced 2026-04-20 11:05:18 +08:00
update
This commit is contained in:
@@ -67,10 +67,10 @@ public interface ThirdpartySnRelationMapper {
|
||||
|
||||
/**
|
||||
* 查询第三方平台桩编号对应的列表
|
||||
* @param queryPileDTO
|
||||
* @param dto
|
||||
* @return
|
||||
*/
|
||||
List<ThirdPartySnRelationVO> getRelationVOList(@Param("dto") QueryPileDTO queryPileDTO);
|
||||
List<ThirdPartySnRelationVO> getRelationVOList(@Param("dto") ThirdPartySnRelationDTO dto);
|
||||
|
||||
/**
|
||||
* 修改第三方平台对应编号
|
||||
|
||||
@@ -67,7 +67,7 @@ public interface IThirdpartySnRelationService {
|
||||
* @param queryPileDTO
|
||||
* @return
|
||||
*/
|
||||
List<ThirdPartySnRelationVO> getRelationVOList(QueryPileDTO queryPileDTO);
|
||||
List<ThirdPartySnRelationVO> getRelationVOList(ThirdPartySnRelationDTO dto);
|
||||
|
||||
/**
|
||||
* 修改第三方平台对应编号
|
||||
|
||||
@@ -94,12 +94,12 @@ public class ThirdpartySnRelationServiceImpl implements IThirdpartySnRelationSer
|
||||
|
||||
/**
|
||||
* 查询第三方平台桩编号对应的列表
|
||||
* @param queryPileDTO
|
||||
* @param dto
|
||||
* @return
|
||||
*/
|
||||
@Override
|
||||
public List<ThirdPartySnRelationVO> getRelationVOList(QueryPileDTO queryPileDTO) {
|
||||
List<ThirdPartySnRelationVO> list = thirdpartySnRelationMapper.getRelationVOList(queryPileDTO);
|
||||
public List<ThirdPartySnRelationVO> getRelationVOList(ThirdPartySnRelationDTO dto) {
|
||||
List<ThirdPartySnRelationVO> list = thirdpartySnRelationMapper.getRelationVOList(dto);
|
||||
for (ThirdPartySnRelationVO thirdPartySnRelationVO : list) {
|
||||
// 将第三方平台类型中文名称查询出来
|
||||
String thirdPartyType = thirdPartySnRelationVO.getThirdPartyType();
|
||||
|
||||
Reference in New Issue
Block a user