折线图
<p>[TOC]</p>
<h5>简要描述</h5>
<ul>
<li>财务折线图数据接口</li>
</ul>
<h5>请求URL</h5>
<ul>
<li><code>finance/paper_earnings_data</code></li>
</ul>
<h5>请求方式</h5>
<ul>
<li>POST </li>
</ul>
<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;">type</td>
<td style="text-align: left;">是</td>
<td style="text-align: left;">int</td>
<td>1=今日,2=本周,3=本月,4=本年,5=自定义</td>
</tr>
<tr>
<td style="text-align: left;">start_time</td>
<td style="text-align: left;">否</td>
<td style="text-align: left;">int</td>
<td>type=5时必传,开始时间戳</td>
</tr>
<tr>
<td style="text-align: left;">end_time</td>
<td style="text-align: left;">否</td>
<td style="text-align: left;">int</td>
<td>type=5时必传,结束时间戳,不可超过30天</td>
</tr>
<tr>
<td style="text-align: left;">pay_way</td>
<td style="text-align: left;">否</td>
<td style="text-align: left;">int</td>
<td>1=微信,2=支付宝</td>
</tr>
</tbody>
</table>
<h5>返回示例</h5>
<pre><code> {
&quot;code&quot;: 200,
&quot;msg&quot;: &quot;ok!&quot;,
&quot;data&quot;: [
{
&quot;create_time&quot;: &quot;2025-03-17&quot;,
&quot;count&quot;: 0
},
{
&quot;create_time&quot;: &quot;2025-03-18&quot;,
&quot;count&quot;: &quot;0.08&quot;
},
{
&quot;create_time&quot;: &quot;2025-03-19&quot;,
&quot;count&quot;: 0
},
{
&quot;create_time&quot;: &quot;2025-03-20&quot;,
&quot;count&quot;: 0
},
{
&quot;create_time&quot;: &quot;2025-03-21&quot;,
&quot;count&quot;: 0
},
{
&quot;create_time&quot;: &quot;2025-03-22&quot;,
&quot;count&quot;: 0
},
{
&quot;create_time&quot;: &quot;2025-03-23&quot;,
&quot;count&quot;: 0
}
]
}</code></pre>
<h5>返回参数说明</h5>
<table>
<thead>
<tr>
<th style="text-align: left;">参数名</th>
<th style="text-align: left;">类型</th>
<th>说明</th>
</tr>
</thead>
<tbody>
</tbody>
</table>
<h5>备注</h5>
<ul>
<li>更多返回错误代码请看首页的错误代码描述</li>
</ul>