获取订单详情接口
<h5>简要描述</h5>
<ul>
<li>获取订单详情</li>
</ul>
<h5>请求URL</h5>
<ul>
<li><code>https://wlhyapi.hbcygc.net/api/wleye/GetOrderInfoByOrderNo</code></li>
</ul>
<h5>请求方式</h5>
<ul>
<li>POST </li>
</ul>
<h5>Header请求头</h5>
<table>
<thead>
<tr>
<th style="text-align: left;">参数名</th>
<th style="text-align: left;">必选</th>
<th style="text-align: left;">类型</th>
<th>说明</th>
</tr>
</thead>
<tbody>
<tr>
<td style="text-align: left;">access_token</td>
<td style="text-align: left;">否</td>
<td style="text-align: left;">string</td>
<td>用户登录后凭证token</td>
</tr>
</tbody>
</table>
<h5>参数</h5>
<table>
<thead>
<tr>
<th style="text-align: left;">参数名</th>
<th style="text-align: left;">必选</th>
<th style="text-align: left;">类型</th>
<th>说明</th>
</tr>
</thead>
<tbody>
<tr>
<td style="text-align: left;">orderNo</td>
<td style="text-align: left;">是</td>
<td style="text-align: left;">string</td>
<td>订单编号</td>
</tr>
</tbody>
</table>
<h5>返回示例</h5>
<pre><code>{
&quot;code&quot;: 200,
&quot;data&quot;: {
&quot;orderNo&quot;: &quot;16880242615026688&quot;,
&quot;buyUserName&quot;: &quot;p2&quot;,
&quot;orderStatus&quot;: 1,
&quot;payDateTime_ts&quot;: &quot;&quot;,
&quot;createTime_ts&quot;: &quot;1718176247000&quot;,
&quot;payPrice&quot;: &quot;0.01&quot;,
&quot;goodName&quot;: &quot;年卡&quot;,
&quot;goodNo&quot;: &quot;2&quot;,
&quot;imageUrl&quot;: &quot;https://image.ueda10.co.jp/Books&quot;,
&quot;amount&quot;: &quot;0.01&quot;
},
&quot;otherValue&quot;: null,
&quot;message&quot;: &quot;&quot;,
&quot;result&quot;: false,
&quot;total&quot;: 0
}</code></pre>
<h5>返回参数说明</h5>
<table>
<thead>
<tr>
<th style="text-align: left;">参数名</th>
<th style="text-align: left;">类型</th>
<th>说明</th>
</tr>
</thead>
<tbody>
<tr>
<td style="text-align: left;">code</td>
<td style="text-align: left;">int</td>
<td>状态码,200:成功;201:参数错误</td>
</tr>
<tr>
<td style="text-align: left;">data</td>
<td style="text-align: left;">string</td>
<td>订单号</td>
</tr>
</tbody>
</table>
<h5>备注</h5>
<ul>
<li>更多返回错误代码请看首页的错误代码描述</li>
</ul>