判断是否为贵金属货币对
<p>[TOC]</p>
<h5>简要描述</h5>
<ul>
<li>判断是否为贵金属货币对</li>
</ul>
<h5>注入接口类</h5>
<pre><code class="language-java">@Autowired
private PairRepository pubPairRepository;</code></pre>
<h5>接口方法</h5>
<pre><code class="language-java">Boolean isPmPair(PairDto pairDto);</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>
<th>说明</th>
</tr>
</thead>
<tbody>
<tr>
<td style="text-align: left;">pairDto</td>
<td style="text-align: left;">是</td>
<td style="text-align: left;">PairDto</td>
<td>需要构造含有code的PairDto对象</td>
</tr>
</tbody>
</table>
<h5>返回示例</h5>
<pre><code> 返回Boolean类型</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;">true</td>
<td style="text-align: left;">Boolean</td>
<td>贵金属货币</td>
</tr>
<tr>
<td style="text-align: left;">false</td>
<td style="text-align: left;">Boolean</td>
<td>非贵金属货币</td>
</tr>
</tbody>
</table>
<h5>备注</h5>