update 接口文档

This commit is contained in:
DESKTOP-D9QDT1P\JS-ZZA
2023-03-06 11:05:36 +08:00
parent 00dc85f46b
commit 5581be0088
2 changed files with 28 additions and 0 deletions

View File

@@ -619,3 +619,30 @@ null提示”==操作成功==“
| chargingElectricity | String | Y | 用电量 | | chargingElectricity | String | Y | 用电量 |
| chargingTime | String | Y | 充电时长 | | chargingTime | String | Y | 充电时长 |
## 10001 通过 memberId 查询用户个人基本信息(查询用户是否已绑定车牌号)
> 请求地址: http://localhost:8080/uniapp/member/selectInfoByMemberId
>
> 请求方式GET
### 反参
| 字段名 | 类型 | 是否必传 | 备注 |
| ------------------ | ------ | -------- | ------ |
| licensePlateNumber | String | Y | 车牌号 |
## 10002 用户绑定车牌号
> 请求地址http://localhost:8080/uniapp/member/memberBindingCarNo
>
> 请求方式POST
### 入参
| 字段名 | 类型 | 是否必传 | 备注 |
| ---------------- | ------ | -------- | ---------- |
| phoneNumber | String | Y | 手机号码 |
| verificationCode | String | Y | 短信验证码 |
| carNo | String | Y | 车牌号 |

View File

@@ -220,6 +220,7 @@ public class MemberController extends BaseController {
/** /**
* 用户绑定车牌号 * 用户绑定车牌号
* http://localhost:8080/uniapp/member/memberBindingCarNo
* *
* @return * @return
*/ */