订单详情
<p>[TOC]</p>
<h5>简要描述</h5>
<ul>
<li>订单详情接口</li>
</ul>
<h5>请求URL</h5>
<ul>
<li><code>admin/orderdetail</code></li>
</ul>
<h5>请求方式</h5>
<ul>
<li>POST </li>
</ul>
<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;">Oid</td>
<td style="text-align: left;">是</td>
<td style="text-align: left;">int</td>
<td>订单ID</td>
</tr>
</tbody>
</table>
<h5>返回示例</h5>
<pre><code>{
&quot;code&quot;: 200,
&quot;msg&quot;: &quot;获取成功&quot;,
&quot;result&quot;: [
{
&quot;pid&quot;: 1,
&quot;projectid&quot;: 1,
&quot;productcode&quot;: &quot;12345&quot;,
&quot;productname&quot;: &quot;测试产品1&quot;,
&quot;productprice&quot;: &quot;100.00&quot;,
&quot;vipprice&quot;: &quot;500.00&quot;,
&quot;vipnumber&quot;: 5,
&quot;productremark&quot;: &quot;1000送11次&quot;,
&quot;productstatus&quot;: 1,
&quot;createdate&quot;: &quot;2025-01-10 15:45:41&quot;,
&quot;updatedate&quot;: null
}
]
}</code></pre>
<h5>备注</h5>
<ul>
<li>更多返回错误代码请看首页的错误代码描述</li>
</ul>