mr2


首页概况

<p>[TOC]</p> <h5>简要描述</h5> <ul> <li>报表接口</li> </ul> <h5>请求URL</h5> <ul> <li>` <a href="http://api-test.boka.vc/analytic/business/homepage/report">http://api-test.boka.vc/analytic/business/homepage/report</a></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;">compIds</td> <td style="text-align: left;">是</td> <td style="text-align: left;">List</td> <td>门店id集合</td> </tr> <tr> <td style="text-align: left;">startDate</td> <td style="text-align: left;">是</td> <td style="text-align: left;">string</td> <td>账务日期-开始日期 <strong>yyyy-MM-dd</strong></td> </tr> <tr> <td style="text-align: left;">endDate</td> <td style="text-align: left;">是</td> <td style="text-align: left;">string</td> <td>账务日期-结束日期 <strong>yyyy-MM-dd</strong></td> </tr> <tr> <td style="text-align: left;">pageNum</td> <td style="text-align: left;">是</td> <td style="text-align: left;">int</td> <td>页码</td> </tr> <tr> <td style="text-align: left;">pageSize</td> <td style="text-align: left;">是</td> <td style="text-align: left;">int</td> <td>分页大小</td> </tr> </tbody> </table> <h5>参数示例</h5> <pre><code>{     &amp;quot;compIds&amp;quot;: [         &amp;quot;5d6494c5033f9f3274eb991a&amp;quot;     ],     &amp;quot;startDate&amp;quot;: &amp;quot;2024-12-01&amp;quot;,     &amp;quot;endDate&amp;quot;: &amp;quot;2024-12-31&amp;quot;,     &amp;quot;pageNum&amp;quot;: 1,     &amp;quot;pageSize&amp;quot;: 10 }</code></pre> <h5>返回参数说明</h5> <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;">compId</td> <td style="text-align: left;">String</td> <td>门店id</td> </tr> <tr> <td style="text-align: left;">compCode</td> <td style="text-align: left;">String</td> <td>门店编号</td> </tr> <tr> <td style="text-align: left;">compName</td> <td style="text-align: left;">String</td> <td>门店名称</td> </tr> <tr> <td style="text-align: left;">staffCode</td> <td style="text-align: left;">String</td> <td>员工编号</td> </tr> <tr> <td style="text-align: left;">staffName</td> <td style="text-align: left;">String</td> <td>员工姓名</td> </tr> <tr> <td style="text-align: left;">reserveCnt</td> <td style="text-align: left;">float</td> <td>预约数</td> </tr> <tr> <td style="text-align: left;">customerCnt</td> <td style="text-align: left;">float</td> <td>实操客数</td> </tr> <tr> <td style="text-align: left;">visitCnt</td> <td style="text-align: left;">float</td> <td>回访数</td> </tr> <tr> <td style="text-align: left;">openCnt</td> <td style="text-align: left;">float</td> <td>成交数</td> </tr> <tr> <td style="text-align: left;">openPerf</td> <td style="text-align: left;">float</td> <td>成交业绩</td> </tr> </tbody> </table> <p>statistics.business说明</p> <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;">totalCashAmt</td> <td style="text-align: left;">float</td> <td>营收-实际总现金</td> </tr> <tr> <td style="text-align: left;">consumeAmt</td> <td style="text-align: left;">float</td> <td>营收-消耗总额</td> </tr> <tr> <td style="text-align: left;">income</td> <td style="text-align: left;">float</td> <td>营收-其它收入</td> </tr> <tr> <td style="text-align: left;">expend</td> <td style="text-align: left;">float</td> <td>营收-其它支出</td> </tr> <tr> <td style="text-align: left;">rightsAmt</td> <td style="text-align: left;">float</td> <td>客流-开卡-销售总额</td> </tr> </tbody> </table> <p>statistics.customer说明</p> <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;">customerNum</td> <td style="text-align: left;">String</td> <td>客流-实操-客数</td> </tr> <tr> <td style="text-align: left;">potentialCnt</td> <td style="text-align: left;">float</td> <td>客流-实操-潜在客</td> </tr> <tr> <td style="text-align: left;">newCnt</td> <td style="text-align: left;">float</td> <td>客流-实操-体验客</td> </tr> <tr> <td style="text-align: left;">singleCnt</td> <td style="text-align: left;">float</td> <td>客流-实操-单项客</td> </tr> <tr> <td style="text-align: left;">oldCnt</td> <td style="text-align: left;">float</td> <td>客流-实操-老客</td> </tr> <tr> <td style="text-align: left;">saleMemberCnt</td> <td style="text-align: left;">float</td> <td>客流-开卡-客数</td> </tr> </tbody> </table> <h5>汇总-返回示例</h5> <pre><code>{     &amp;quot;code&amp;quot;: 200,     &amp;quot;result&amp;quot;: {         &amp;quot;hasNextPage&amp;quot;: true,         &amp;quot;hasPreviousPage&amp;quot;: false,         &amp;quot;isFirstPage&amp;quot;: true,         &amp;quot;isLastPage&amp;quot;: false,         &amp;quot;list&amp;quot;: [             {                 &amp;quot;compCode&amp;quot;: &amp;quot;001&amp;quot;,                 &amp;quot;compId&amp;quot;: &amp;quot;5d6494c5033f9f3274eb991a&amp;quot;,                 &amp;quot;compName&amp;quot;: &amp;quot;博卡总部&amp;quot;,                 &amp;quot;customerCnt&amp;quot;: 65,                 &amp;quot;openCnt&amp;quot;: 9,                 &amp;quot;openPerf&amp;quot;: 22111.99000,                 &amp;quot;reserveCnt&amp;quot;: 0,                 &amp;quot;staffCode&amp;quot;: &amp;quot;00020&amp;quot;,                 &amp;quot;staffName&amp;quot;: &amp;quot;产品_24101常出&amp;quot;,                 &amp;quot;visitCnt&amp;quot;: 0             },             {                 &amp;quot;compCode&amp;quot;: &amp;quot;001&amp;quot;,                 &amp;quot;compId&amp;quot;: &amp;quot;5d6494c5033f9f3274eb991a&amp;quot;,                 &amp;quot;compName&amp;quot;: &amp;quot;博卡总部&amp;quot;,                 &amp;quot;customerCnt&amp;quot;: 55,                 &amp;quot;openCnt&amp;quot;: 7,                 &amp;quot;openPerf&amp;quot;: 0.00000,                 &amp;quot;reserveCnt&amp;quot;: 0,                 &amp;quot;staffCode&amp;quot;: &amp;quot;00021&amp;quot;,                 &amp;quot;staffName&amp;quot;: &amp;quot;test322&amp;quot;,                 &amp;quot;visitCnt&amp;quot;: 0             }         ],         &amp;quot;nextPage&amp;quot;: 2,         &amp;quot;pageNum&amp;quot;: 1,         &amp;quot;pageSize&amp;quot;: 10,         &amp;quot;pages&amp;quot;: 2,         &amp;quot;prePage&amp;quot;: 1,         &amp;quot;size&amp;quot;: 0,         &amp;quot;statistics&amp;quot;: {             &amp;quot;total&amp;quot;: 16,             &amp;quot;business&amp;quot;: {                 &amp;quot;consumeAmt&amp;quot;: 51916.09000,                 &amp;quot;expend&amp;quot;: 0,                 &amp;quot;income&amp;quot;: 0,                 &amp;quot;rightsAmt&amp;quot;: 98285.67000,                 &amp;quot;totalCashAmt&amp;quot;: 160220.38000             },             &amp;quot;customer&amp;quot;: {                 &amp;quot;cashCustomerNum&amp;quot;: 85,                 &amp;quot;cashCustomerTimes&amp;quot;: 127,                 &amp;quot;cashFemaleCnt&amp;quot;: 24,                 &amp;quot;cashMaleCnt&amp;quot;: 61,                 &amp;quot;cashMemberNum&amp;quot;: 18,                 &amp;quot;cashNewCnt&amp;quot;: 70,                 &amp;quot;cashOldCnt&amp;quot;: 10,                 &amp;quot;cashPotentialCnt&amp;quot;: 4,                 &amp;quot;customerNum&amp;quot;: 91,                 &amp;quot;customerTimes&amp;quot;: 149,                 &amp;quot;femaleCnt&amp;quot;: 31,                 &amp;quot;guestNum&amp;quot;: 67,                 &amp;quot;maleCnt&amp;quot;: 61,                 &amp;quot;memberNum&amp;quot;: 24,                 &amp;quot;newCnt&amp;quot;: 75,                 &amp;quot;newDealCnt&amp;quot;: 16,                 &amp;quot;oldCnt&amp;quot;: 11,                 &amp;quot;potentialCnt&amp;quot;: 4,                 &amp;quot;saleMemberCnt&amp;quot;: 16             }         },         &amp;quot;total&amp;quot;: 16     },     &amp;quot;success&amp;quot;: true }</code></pre> <h5>备注</h5> <ul> <li>无</li> </ul>

页面列表

ITEM_HTML