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

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

@@ -847,4 +847,13 @@ public class MemberService {
public List<MemberWalletVO> queryMemberWalletList(String memberId) {
return memberWalletInfoService.selectByMemberWalletList(memberId);
}
/**
* 查询用户常用充电站
* @param memberId
* @return
*/
public List<UserFrquentedStationInfo> queryUserFrquentedStation(String memberId) {
return orderService.queryUserFrquentedStation(memberId);
}
}

View File

@@ -1514,4 +1514,13 @@ public class OrderService {
public static void main(String[] args) {
}
/**
* 查询用户常用站点
* @param memberId
* @return
*/
public List<UserFrquentedStationInfo> queryUserFrquentedStation(String memberId) {
return orderBasicInfoService.queryUserFrquentedStation(memberId);
}
}