diff --git a/doc/万车充接口补充.md b/doc/万车充接口补充.md index fdc582ffa..26fde53ea 100644 --- a/doc/万车充接口补充.md +++ b/doc/万车充接口补充.md @@ -76,7 +76,7 @@ # 查询用户常去站点(最近半年) ```text -接口地址:/uniapp/member/getUserFrquentedStationList +接口地址:/uniapp/member/getUserFrequentedStationList 请求方式:GET ``` @@ -88,11 +88,11 @@ ### **反参** -| 字段名 | 类型 | 是否必传 | 备注 | -| ------------------------------ | ------------------------ | -------- | ------------------------ | -| List | UserFrquentedStationInfo | Y | 按照充电次数从高到低排序 | +| 字段名 | 类型 | 是否必传 | 备注 | +| ------------------------------- | ------------------------- | -------- | ------------------------ | +| List | UserFrequentedStationInfo | Y | 按照充电次数从高到低排序 | -#### UserFrquentedStationInfo +#### UserFrequentedStationInfo | 字段名 | 类型 | 是否必传 | 备注 | | ----------- | ------ | -------- | -------- | diff --git a/jsowell-admin/src/main/java/com/jsowell/api/uniapp/customer/MemberController.java b/jsowell-admin/src/main/java/com/jsowell/api/uniapp/customer/MemberController.java index 097e7ba09..e8e30326e 100644 --- a/jsowell-admin/src/main/java/com/jsowell/api/uniapp/customer/MemberController.java +++ b/jsowell-admin/src/main/java/com/jsowell/api/uniapp/customer/MemberController.java @@ -608,8 +608,8 @@ public class MemberController extends BaseController { /** * 查询用户常去站点(最近半年) */ - @GetMapping("/getUserFrquentedStationList") - public RestApiResponse queryUserFrquentedStation(HttpServletRequest request) { + @GetMapping("/getUserFrequentedStationList") + public RestApiResponse queryUserFrequentedStation(HttpServletRequest request) { RestApiResponse response; try { String memberId = getMemberIdByAuthorization(request);