获取未入库的商品列表
<h5>简要描述</h5>
<ul>
<li>获取未入库的商品列表</li>
</ul>
<h5>请求URL</h5>
<ul>
<li><code>http://localhost:32223/api/WxLive/NotWarehoused?name=测试&pageIndex=0&pageSize=30</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;">name</td>
<td style="text-align: left;">否</td>
<td style="text-align: left;">string</td>
<td>商品名称</td>
</tr>
<tr>
<td style="text-align: left;">pageIndex</td>
<td style="text-align: left;">是</td>
<td style="text-align: left;">int</td>
<td>页码</td>
</tr>
<tr>
<td style="text-align: left;">pageSize</td>
<td style="text-align: left;">是</td>
<td style="text-align: left;">int</td>
<td>条数</td>
</tr>
</tbody>
</table>
<h5>返回示例</h5>
<pre><code> {
"success": true,
"msg": "",
"code": 200,
"data": {
"List": [
{
"Id": 4,
"GoodsId": 0,
"ProductId": 1027281,
"AuditId": 0,
"CoverImgUrl": "",
"ImgUrl": "http://localhost:32223/Storage/Shop/1/Products/1027281/1_220.png",
"Name": "测试纸尿布",
"PriceType": 1,
"Price": 20.00,
"Price2": 10.00,
"audit_status": 0,
"Url": "pages/productdetail/productdetail?id=1027281",
"ReturnResult": null,
"IsDelete": 0,
"CreateTime": null,
"UpdateTime": null,
"ModifiedColumns": [],
"EnableLazyLoad": true,
"IgnoreReference": false
},
{
"Id": 3,
"GoodsId": 0,
"ProductId": 1027281,
"AuditId": 0,
"CoverImgUrl": "",
"ImgUrl": "http://localhost:32223/Storage/Shop/1/Products/1027281/1_220.png",
"Name": "测试纸尿布",
"PriceType": 1,
"Price": 20.00,
"Price2": 10.00,
"audit_status": 0,
"Url": "pages/productdetail/productdetail?id=1027281",
"ReturnResult": null,
"IsDelete": 0,
"CreateTime": null,
"UpdateTime": null,
"ModifiedColumns": [],
"EnableLazyLoad": true,
"IgnoreReference": false
},
{
"Id": 1,
"GoodsId": 0,
"ProductId": 1027281,
"AuditId": 0,
"CoverImgUrl": "",
"ImgUrl": "http://localhost:32223/Storage/Shop/1/Products/1027281/1_220.png",
"Name": "测试纸尿布",
"PriceType": 1,
"Price": 20.00,
"Price2": 10.00,
"audit_status": 0,
"Url": "pages/productdetail/productdetail?id=1027281",
"ReturnResult": null,
"IsDelete": 0,
"CreateTime": null,
"UpdateTime": null,
"ModifiedColumns": [],
"EnableLazyLoad": true,
"IgnoreReference": false
}
],
"Total": 3
},
"total": 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;">audit_status</td>
<td style="text-align: left;">int</td>
<td>商品状态,0:未审核,1:审核中,2:审核通过,3审核失败</td>
</tr>
</tbody>
</table>
<h5>备注</h5>
<ul>
<li>更多返回错误代码请看首页的错误代码描述</li>
</ul>