单个商品多单位列表接口
<p>[TOC]</p>
<h5>简要描述</h5>
<ul>
<li>单个商品多单位列表接口</li>
</ul>
<h5>请求URL</h5>
<ul>
<li><code>http://xx.com/intell/app-store/get-parts-multi-list</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;">customer_id</td>
<td style="text-align: left;">是</td>
<td style="text-align: left;">int</td>
<td>客户id</td>
</tr>
<tr>
<td style="text-align: left;">parts_id</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;errCode&quot;: 1000,
&quot;errMsg&quot;: &quot;请求成功&quot;,
&quot;data&quot;: [
{
&quot;parts_id&quot;: &quot;2075&quot;,
&quot;mainly_mark&quot;: 0,//是否主商品 1是 0否
&quot;parts_unit_rate&quot;: &quot;2&quot;,//多单位换算数量
&quot;parts_name&quot;: &quot;机油滤清器&quot;,
&quot;parts_unit_name&quot;: &quot;对&quot;,
&quot;parts_code&quot;: &quot;NO-2895&quot;,
&quot;parts_factory_code&quot;: &quot;NO-2895&quot;,
&quot;parts_brand_name&quot;: &quot;耐诺思&quot;,
&quot;parts_category_name&quot;: &quot;机油滤清器&quot;,
&quot;show_name&quot;: &quot;机油滤清器|NO-2895|NO-2895|耐诺思&quot;,
&quot;dms_unit_rate&quot;: 1//dms换算率
},
{
&quot;parts_id&quot;: &quot;2000&quot;,
&quot;mainly_mark&quot;: 0,
&quot;parts_unit_rate&quot;: &quot;4&quot;,
&quot;parts_name&quot;: &quot;机油滤清器&quot;,
&quot;parts_unit_name&quot;: &quot;副&quot;,
&quot;parts_code&quot;: &quot;NO-0312&quot;,
&quot;parts_factory_code&quot;: &quot;NO-0312&quot;,
&quot;parts_brand_name&quot;: &quot;耐诺思&quot;,
&quot;parts_category_name&quot;: &quot;机油滤清器&quot;,
&quot;show_name&quot;: &quot;机油滤清器|NO-0312|NO-0312|耐诺思&quot;,
&quot;dms_unit_rate&quot;: 1
},
{
&quot;parts_id&quot;: &quot;12&quot;,
&quot;mainly_mark&quot;: 0,
&quot;parts_unit_rate&quot;: &quot;5&quot;,
&quot;parts_name&quot;: &quot;SUSTINA 全进口系列&quot;,
&quot;parts_unit_name&quot;: &quot;桶&quot;,
&quot;parts_code&quot;: &quot;SUSTINA SN 0W50 1L&quot;,
&quot;parts_factory_code&quot;: &quot;04647601&quot;,
&quot;parts_brand_name&quot;: &quot;引能仕&quot;,
&quot;parts_category_name&quot;: &quot;汽机油&quot;,
&quot;show_name&quot;: &quot;SUSTINA 全进口系列|SUSTINA SN 0W50 1L|04647601|引能仕&quot;,
&quot;dms_unit_rate&quot;: 1
},
{
&quot;parts_id&quot;: &quot;1999&quot;,
&quot;mainly_mark&quot;: 1,
&quot;parts_unit_rate&quot;: 1,
&quot;parts_name&quot;: &quot;机油滤清器&quot;,
&quot;parts_unit_name&quot;: &quot;个(3升)&quot;,
&quot;parts_code&quot;: &quot;NO-0271&quot;,
&quot;parts_factory_code&quot;: &quot;NO-0271&quot;,
&quot;parts_brand_name&quot;: &quot;耐诺思&quot;,
&quot;parts_category_name&quot;: &quot;机油滤清器&quot;,
&quot;show_name&quot;: &quot;机油滤清器|NO-0271|NO-0271|耐诺思&quot;,
&quot;dms_unit_rate&quot;: &quot;3&quot;
}
]
}</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;">groupid</td>
<td style="text-align: left;">int</td>
<td>用户组id,1:超级管理员;2:普通用户</td>
</tr>
</tbody>
</table>
<h5>备注</h5>
<ul>
<li>更多返回错误代码请看首页的错误代码描述</li>
</ul>