企业船东查询
<p>[TOC]</p>
<h5>简要描述</h5>
<ul>
<li>企业船东查询</li>
</ul>
<h5>请求URL</h5>
<ul>
<li><code>/gateway/api/company/shipOwners/searchShipOwner</code></li>
</ul>
<h5>请求方式</h5>
<ul>
<li>POST</li>
</ul>
<h5>参数</h5>
<pre><code>{
&quot;keyword&quot;: &quot;JNB&quot;,
&quot;portId&quot;: &quot;&quot;,
&quot;pageNum&quot;: 1,
&quot;pageSize&quot;: 10
}</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;">keyword</td>
<td style="text-align: left;">String</td>
<td>搜索关键字</td>
</tr>
<tr>
<td style="text-align: left;">portId</td>
<td style="text-align: left;">int</td>
<td>港口id</td>
</tr>
<tr>
<td style="text-align: left;">pageNum</td>
<td style="text-align: left;">int</td>
<td>页数</td>
</tr>
<tr>
<td style="text-align: left;">pageSize</td>
<td style="text-align: left;">int</td>
<td>条数</td>
</tr>
</tbody>
</table>
<h5>返回示例</h5>
<pre><code>{
&quot;ok&quot;: true,
&quot;code&quot;: &quot;0000&quot;,
&quot;message&quot;: &quot;成功&quot;,
&quot;content&quot;: {
&quot;pageData&quot;: {
&quot;records&quot;: [
{
&quot;id&quot;: &quot;1904525935446446082&quot;,
&quot;companyId&quot;: null,
&quot;shipOwnerCode&quot;: &quot;JNB&quot;,
&quot;shipOwnerName&quot;: &quot;巨牛逼公司&quot;,
&quot;shipOwnerNameEn&quot;: &quot;&quot;,
&quot;status&quot;: 0,
&quot;phone&quot;: &quot;13666688888&quot;,
&quot;address&quot;: &quot;上海牛逼路牛逼大厦&quot;,
&quot;website&quot;: &quot;www.juniubi.com&quot;,
&quot;imageId&quot;: null,
&quot;createdBy&quot;: null,
&quot;updatedBy&quot;: 1,
&quot;createTime&quot;: &quot;2025-03-25 21:29:02&quot;,
&quot;updateTime&quot;: &quot;2025-03-25 21:39:50&quot;,
&quot;version&quot;: null,
&quot;ports&quot;: [
{
&quot;id&quot;: &quot;1904525935576469505&quot;,
&quot;portName&quot;: &quot;巨牛&quot;,
&quot;contacts&quot;: [
{
&quot;id&quot;: &quot;1904526114866188290&quot;,
&quot;name&quot;: &quot;牛大人1号&quot;,
&quot;department&quot;: &quot;巨牛分部&quot;,
&quot;phone&quot;: &quot;13412312311&quot;,
&quot;email&quot;: &quot;12123@qq.com&quot;
},
{
&quot;id&quot;: &quot;1904527745514995713&quot;,
&quot;name&quot;: &quot;牛大人2号&quot;,
&quot;department&quot;: &quot;北京分部&quot;,
&quot;phone&quot;: &quot;133333334444&quot;,
&quot;email&quot;: &quot;123123&quot;
}
]
},
{
&quot;id&quot;: &quot;1904528654785576961&quot;,
&quot;portName&quot;: &quot;牛大人口岸&quot;,
&quot;contacts&quot;: [
{
&quot;id&quot;: &quot;1904528654919794689&quot;,
&quot;name&quot;: &quot;你就说牛不牛吧&quot;,
&quot;department&quot;: &quot;牛不牛&quot;,
&quot;phone&quot;: &quot;123123123123&quot;,
&quot;email&quot;: &quot;12313123123&quot;
}
]
}
]
}
],
&quot;total&quot;: 1,
&quot;size&quot;: 10,
&quot;current&quot;: 1,
&quot;orders&quot;: [],
&quot;optimizeCountSql&quot;: true,
&quot;hitCount&quot;: false,
&quot;countId&quot;: null,
&quot;maxLimit&quot;: null,
&quot;searchCount&quot;: true,
&quot;pages&quot;: 1
},
&quot;relatedPorts&quot;: [
{
&quot;id&quot;: &quot;1904525935576469505&quot;,
&quot;portName&quot;: &quot;巨牛&quot;,
&quot;contacts&quot;: [
{
&quot;id&quot;: &quot;1904526114866188290&quot;,
&quot;name&quot;: &quot;牛大人1号&quot;,
&quot;department&quot;: &quot;巨牛分部&quot;,
&quot;phone&quot;: &quot;13412312311&quot;,
&quot;email&quot;: &quot;12123@qq.com&quot;
},
{
&quot;id&quot;: &quot;1904527745514995713&quot;,
&quot;name&quot;: &quot;牛大人2号&quot;,
&quot;department&quot;: &quot;北京分部&quot;,
&quot;phone&quot;: &quot;133333334444&quot;,
&quot;email&quot;: &quot;123123&quot;
}
]
},
{
&quot;id&quot;: &quot;1904528654785576961&quot;,
&quot;portName&quot;: &quot;牛大人口岸&quot;,
&quot;contacts&quot;: [
{
&quot;id&quot;: &quot;1904528654919794689&quot;,
&quot;name&quot;: &quot;你就说牛不牛吧&quot;,
&quot;department&quot;: &quot;牛不牛&quot;,
&quot;phone&quot;: &quot;123123123123&quot;,
&quot;email&quot;: &quot;12313123123&quot;
}
]
}
]
},
&quot;token&quot;: null
}</code></pre>
<h5>返回参数说明</h5>
<h5>备注</h5>
<ul>
<li>更多返回错误代码请看首页的错误代码描述</li>
</ul>