船东下拉框数据
<p>[TOC]</p>
<h5>简要描述</h5>
<ul>
<li>船东数据下拉框数据源</li>
</ul>
<h5>请求URL</h5>
<ul>
<li><code>gateway/api/company/shipOwners/shipOwnerDropdown</code></li>
</ul>
<h5>请求方式</h5>
<ul>
<li>GET </li>
</ul>
<h5>返回示例</h5>
<pre><code>{
&quot;ok&quot;: true,
&quot;code&quot;: &quot;0000&quot;,
&quot;message&quot;: &quot;成功&quot;,
&quot;content&quot;: [
{
&quot;shipOwnerCode&quot;: &quot;SO123456&quot;,
&quot;shipOwnerName&quot;: &quot;华海船东公司&quot;,
&quot;shipOwnerNameEn&quot;: &quot;Huahai Shipowner Company&quot;
}
],
&quot;token&quot;: null
}</code></pre>
<h5>返回参数说明</h5>
<table>
<thead>
<tr>
<th style="text-align: left;">参数名</th>
<th style="text-align: left;">类型</th>
<th style="text-align: left;">说明</th>
</tr>
</thead>
<tbody>
<tr>
<td style="text-align: left;">shipOwnerCode</td>
<td style="text-align: left;">String</td>
<td style="text-align: left;">船东编码</td>
</tr>
<tr>
<td style="text-align: left;">shipOwnerName</td>
<td style="text-align: left;">String</td>
<td style="text-align: left;">船东中文名称</td>
</tr>
<tr>
<td style="text-align: left;">shipOwnerNameEn</td>
<td style="text-align: left;">String</td>
<td style="text-align: left;">船东英文名称</td>
</tr>
</tbody>
</table>
<h5>备注</h5>
<ul>
<li>更多返回错误代码请看首页的错误代码描述</li>
</ul>