mirror of
https://codeup.aliyun.com/67c68d4e484ca2f0a13ac3c1/ydc/jsowell-charger-web.git
synced 2026-04-22 03:55:17 +08:00
update
This commit is contained in:
@@ -966,4 +966,26 @@ public class WccServiceImpl implements WccService {
|
||||
return jctPileDetailInfoVOS;
|
||||
}
|
||||
|
||||
@Override
|
||||
public List<JCTThirdPartyStationRelation> selectThirdPartyStationRelationList(JCTThirdPartyStationRelation jctThirdPartyStationRelation) {
|
||||
if (jctThirdPartyStationRelation == null) {
|
||||
return Collections.emptyList() ;
|
||||
}
|
||||
ThirdPartyStationRelation thirdPartyStationRelation = new ThirdPartyStationRelation();
|
||||
BeanUtils.copyProperties(jctThirdPartyStationRelation,thirdPartyStationRelation);
|
||||
|
||||
List<ThirdPartyStationRelation> thirdPartyStationRelations = thirdPartyStationRelationMapper.selectThirdPartyStationRelationList(thirdPartyStationRelation);
|
||||
if (CollectionUtils.isEmpty(thirdPartyStationRelations)) {
|
||||
return Collections.emptyList();
|
||||
}
|
||||
List<JCTThirdPartyStationRelation> jctThirdPartyStationRelations = new ArrayList<>();
|
||||
for (ThirdPartyStationRelation thirdPartyStationRelation1 : thirdPartyStationRelations) {
|
||||
JCTThirdPartyStationRelation jctThirdPartyStationRelation1 = new JCTThirdPartyStationRelation();
|
||||
BeanUtils.copyProperties(thirdPartyStationRelation1, jctThirdPartyStationRelation1);
|
||||
jctThirdPartyStationRelations.add(jctThirdPartyStationRelation1);
|
||||
}
|
||||
return jctThirdPartyStationRelations;
|
||||
}
|
||||
|
||||
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user