mirror of
https://codeup.aliyun.com/67c68d4e484ca2f0a13ac3c1/ydc/jsowell-charger-web.git
synced 2026-07-08 16:08:23 +08:00
update 接口文档
This commit is contained in:
@@ -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 |
|
||||||
|
|
||||||
|
**出参**
|
||||||
|
|
||||||
|
无
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
@@ -274,6 +274,7 @@ public class OrderController extends BaseController {
|
|||||||
|
|
||||||
/**
|
/**
|
||||||
* 申请开票接口
|
* 申请开票接口
|
||||||
|
* http://localhost:8080/uniapp/order/applyOrderInvoice
|
||||||
*/
|
*/
|
||||||
@PostMapping("/applyOrderInvoice")
|
@PostMapping("/applyOrderInvoice")
|
||||||
public RestApiResponse<?> applyOrderInvoice(HttpServletRequest request, @RequestBody ApplyOrderInvoiceDTO dto) {
|
public RestApiResponse<?> applyOrderInvoice(HttpServletRequest request, @RequestBody ApplyOrderInvoiceDTO dto) {
|
||||||
|
|||||||
Reference in New Issue
Block a user