You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
465 B
21 lines
465 B
1 year ago
|
1. ### 返回报文格式 ###
|
||
|
|
||
|
1、返回报文格式
|
||
|
方法:
|
||
|
---
|
||
|
单据头
|
||
|
| 参数 | 含义 |类型 | 格式 | 是否必填 | 默认值 | 说明 |
|
||
|
| --- | --- |--- | --- | --- | --- | --- |
|
||
|
| status | 状态 | Boolean | | 是 |
|
||
|
| Msg | 消息 | string | | 是 |
|
||
|
| errorCode | 错误编码 | string| | 是 |
|
||
|
| Data | 返回数据 | T 泛型 | | 是 |
|
||
|
|
||
|
|
||
|
```
|
||
|
{
|
||
|
"status": true,
|
||
|
"Msg": null,
|
||
|
"errorCode": null,
|
||
|
"Data": "Tra2023070002"
|
||
|
}
|