update 接口文档

This commit is contained in:
2023-04-14 16:02:00 +08:00
parent ed7f55ddad
commit 8b6dba764a
2 changed files with 40 additions and 0 deletions

View File

@@ -573,7 +573,46 @@ null提示”==操作成功==“
## 5006 查询未开票订单
> 请求地址http://localhost:8080/uniapp/order/queryUninvoicedOrderList
>
> 请求方式POST
**入参**
| 字段名 | 类型 | 是否必传 | 备注 |
| -------- | ---- | -------- | -------- |
| pageNo | int | Y | 查询页码 |
| pageSize | int | Y | 每页数量 |
**出参**
| 字段名 | 类型 | 是否必传 | 备注 |
| ------------ | ------ | -------- | -------- |
| orderCode | String | Y | 订单编号 |
| stationName | String | Y | 站点名称 |
| chargingTime | String | Y | 充电时长 |
| orderAmount | number | Y | 订单金额 |
## 5007 申请开票接口
> 请求地址http://localhost:8080/uniapp/order/applyOrderInvoice
>
> 请求方式POST
**入参**
| 字段名 | 类型 | 是否必传 | 备注 |
| ---------- | ------------ | -------- | ------------ |
| orderCodes | List<String> | Y | 订单编号列表 |
| titleId | String | Y | 抬头id |
**出参**

View File

@@ -274,6 +274,7 @@ public class OrderController extends BaseController {
/**
* 申请开票接口
* http://localhost:8080/uniapp/order/applyOrderInvoice
*/
@PostMapping("/applyOrderInvoice")
public RestApiResponse<?> applyOrderInvoice(HttpServletRequest request, @RequestBody ApplyOrderInvoiceDTO dto) {