获取采购分类
<p><strong>简要描述:</strong> </p>
<ul>
<li>获取采购分类接口</li>
</ul>
<p><strong>请求URL:</strong> </p>
<ul>
<li><code>http://srmplat.tingyun.work/api/app/gettype</code></li>
</ul>
<p><strong>请求方式:</strong></p>
<ul>
<li>GET </li>
</ul>
<p><strong>参数:</strong> </p>
<table>
<thead>
<tr>
<th style="text-align: center;">参数名</th>
<th style="text-align: left;">必选</th>
<th style="text-align: left;">类型</th>
<th>说明</th>
</tr>
</thead>
<tbody>
<tr>
<td style="text-align: center;">type</td>
<td style="text-align: left;">是</td>
<td style="text-align: left;">int</td>
<td>0-采供行业分类,1-采购单位,2-采购有效期,默认为0</td>
</tr>
</tbody>
</table>
<p><strong>返回示例</strong></p>
<pre><code>{
&quot;statusCode&quot;: 200,
&quot;msg&quot;: &quot;获取成功&quot;,
&quot;data&quot;: [
{
&quot;id&quot;: 1,//分类id
&quot;name&quot;: &quot;综合分类&quot;, //分类名称
&quot;category&quot;: 0,
&quot;isShow&quot;: true,
&quot;sort&quot;: 1,
&quot;remarks&quot;: &quot;综合分类&quot;,
&quot;parentId&quot;: 0
}
]
}</code></pre>