每日存款活动
<p><strong>简要描述:</strong></p>
<ul>
<li>每日活动 - 获取今日存款数量和打码量</li>
</ul>
<p><strong>请求URL:</strong></p>
<ul>
<li><code>http://xxx.xxx.com/DepositActivity/getDepositToday</code></li>
</ul>
<p><strong>请求方式:</strong></p>
<ul>
<li>POST Content-Type: application/json;charset=utf-8</li>
</ul>
<p><strong>参数:</strong> </p>
<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;">oid</td>
<td style="text-align: left;">是</td>
<td style="text-align: left;">string</td>
<td>用户噢id</td>
</tr>
</tbody>
</table>
<p><strong>返回示例</strong></p>
<pre><code>{
&quot;deposit&quot;: &quot;1000&quot;, //今日存款数额
&quot;betTotal&quot;: &quot;1000&quot;, //今日打码量
&quot;times&quot;: &quot;1&quot;, //今日存款次数
&quot;isGetBonuses&quot;: &quot;0&quot;, //今天是否已经领取 0:未领取 1:已领取
}</code></pre>
<hr />
<p><strong>简要描述:</strong></p>
<ul>
<li>执行领奖</li>
</ul>
<p><strong>请求URL:</strong></p>
<ul>
<li><code>http://xxx.xxx.com/DepositActivity/getBonusesToday</code></li>
</ul>
<p><strong>请求方式:</strong></p>
<ul>
<li>POST Content-Type: application/json;charset=utf-8</li>
</ul>
<p><strong>参数:</strong></p>
<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;">oid</td>
<td style="text-align: left;">是</td>
<td style="text-align: left;">string</td>
<td>用户噢id</td>
</tr>
</tbody>
</table>
<p><strong>返回示例</strong>
成功:</p>
<pre><code>{
&quot;msg&quot;: &quot;2006&quot;,
&quot;money&quot;: &quot;18&quot; //已领取金额
}</code></pre>
<p>失败:</p>
<pre><code>{
&quot;msg&quot;: &quot;7001&quot;,
&quot;info&quot;: &quot;您今天已经领取过奖金!&quot; //失败原因
}</code></pre>
<p><strong>备注</strong></p>
<ul>
<li>更多返回错误代码请看首页的错误代码描述</li>
</ul>