查询用户常去站点(最近半年)

This commit is contained in:
YAS\29473
2025-03-19 11:53:33 +08:00
parent 96cfa6ce6a
commit e3ce4c13bc
8 changed files with 116 additions and 0 deletions

View File

@@ -543,4 +543,11 @@ public interface OrderBasicInfoService{
List<String> tempGetOrderCodes(QueryOrderDTO dto);
void retryRefundOrderList(List<String> orderCoderList);
/**
* 查询用户常用充电站点信息
* @param memberId
* @return
*/
List<UserFrquentedStationInfo> queryUserFrquentedStation(String memberId);
}

View File

@@ -4954,5 +4954,17 @@ public class OrderBasicInfoServiceImpl implements OrderBasicInfoService {
public List<String> tempGetOrderCodes(QueryOrderDTO dto) {
return orderBasicInfoMapper.tempGetOrderCodes(dto);
}
/**
* 查询用户常用充电站
* @param memberId
* @return
*/
@Override
public List<UserFrquentedStationInfo> queryUserFrquentedStation(String memberId) {
return orderBasicInfoMapper.queryUserFrquentedStation(memberId);
}
}