添加核查记录
<p>[TOC]</p>
<h5>简要描述</h5>
<ul>
<li>添加客户核查记录。</li>
</ul>
<h3>请求URL</h3>
<ul>
<li><code>http://ip:port/boss/customer/survey/add</code></li>
</ul>
<h3>请求方式</h3>
<ul>
<li>POST </li>
</ul>
<h3>请求参数</h3>
<table>
<thead>
<tr>
<th>字段名</th>
<th>类型</th>
<th>是否必填</th>
<th>描述</th>
</tr>
</thead>
<tbody>
<tr>
<td><code>customerId</code></td>
<td><code>String</code></td>
<td>是</td>
<td>客户 ID。</td>
</tr>
<tr>
<td><code>customerName</code></td>
<td><code>String</code></td>
<td>是</td>
<td>客户名称。</td>
</tr>
<tr>
<td><code>surveyType</code></td>
<td><code>String</code></td>
<td>是</td>
<td>调研类型 固定传Verify。</td>
</tr>
<tr>
<td><code>surveyStatus</code></td>
<td><code>String</code></td>
<td>是</td>
<td>调研状态。</td>
</tr>
<tr>
<td><code>surveyDate</code></td>
<td><code>String</code></td>
<td>否</td>
<td>调研日期。 格式yyyy-MM-dd</td>
</tr>
<tr>
<td><code>surveyResult</code></td>
<td><code>String</code></td>
<td>否</td>
<td>调研结果。</td>
</tr>
<tr>
<td><code>surveyFailMsg</code></td>
<td><code>String</code></td>
<td>否</td>
<td>调研失败原因。</td>
</tr>
<tr>
<td><code>surveyDesc</code></td>
<td><code>String</code></td>
<td>否</td>
<td>调研描述。</td>
</tr>
</tbody>
</table>
<h3>请求示例</h3>
<pre><code class="language-json">{
&quot;customerId&quot;: &quot;123456&quot;,
&quot;customerName&quot;: &quot;张三&quot;,
&quot;surveyType&quot;: &quot;Call&quot;,
&quot;surveyStatus&quot;: &quot;Success&quot;,
&quot;surveyDate&quot;: &quot;2021-10-01&quot;,
&quot;surveyResult&quot;: &quot;调研结果&quot;,
&quot;surveyFailMsg&quot;: &quot;&quot;,
&quot;surveyDesc&quot;: &quot;调研描述&quot;
}</code></pre>
<h3>响应参数</h3>
<table>
<thead>
<tr>
<th>字段名</th>
<th>类型</th>
<th>是否必填</th>
<th>描述</th>
</tr>
</thead>
<tbody>
<tr>
<td><code>code</code></td>
<td><code>number</code></td>
<td>是</td>
<td>20000成功 其余失败。</td>
</tr>
<tr>
<td><code>data</code></td>
<td><code>object</code></td>
<td>是</td>
<td>响应信息。</td>
</tr>
</tbody>
</table>
<h3>返回示例</h3>
<pre><code class="language-json"> {
&quot;code&quot;: 20000,
&quot;data&quot;: &quot;添加客户调研记录成功&quot;
}</code></pre>