直播中互动玩法获取答题
<h5>简要描述</h5>
<ul>
<li>直播中互动玩法获取答题</li>
</ul>
<h5>请求URL</h5>
<ul>
<li><code>{{BASE_URL}}/api/job.grades/getLivePlayResult</code></li>
</ul>
<h5>请求方式</h5>
<ul>
<li>GET </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;">paperGradesId</td>
<td style="text-align: left;">是</td>
<td style="text-align: left;">int</td>
<td>成绩 id</td>
</tr>
<tr>
<td style="text-align: left;">step</td>
<td style="text-align: left;">是 ,固定值</td>
<td style="text-align: left;">string</td>
<td>webLiveInteractivePlay</td>
</tr>
</tbody>
</table>
<pre><code>{
paperInfo:{
"paperId":123, #试卷id
"type":"123", # 固定值, 1现金 2 优惠券 3 抵扣券
"name" : "红包名称",
"background" : "背景资料或题干, 图文, 可为空",
"money" : "20", # 红包金额
"count": "1", # 红包或优惠券或抵扣券的个数
"moneyType": "1", # 红包或优惠券或抵扣券种类 1等额金额 2随机金额 3统一折扣 4随机折扣 5等量折扣
"step": "webLiveInteractivePlay" #固定值
"discount": "0.95", # 折扣 当type = 优惠券的时候传
"fullMinus": "100-30", # 满减 当type = 抵扣券的时候传
"startTime": "'1970-01-01 00:00:00'", # 开始时间
"endTime": "'1970-01-01 00:00:00'", # 结束时间
}
#题目
"redEnvelopes":{
"questionList":xxx,#题目
"score":xxx,#分数
"myAnswer":xxx#回答
}
"luckyDraw":{
"questionList":xxx,
"score":xxx,
"myAnswer":xxx
}
"secKill":{
"questionList":xxx,
"score":xxx,
"myAnswer":xxx
}
"increasingAccelerator":{
"questionList":xxx,
"score":xxx,
"myAnswer":xxx
}
}</code></pre>
<pre><code>放questionList里
#红包分数
{
"nameScore":5 #红包名称的分数
"moneyScore" : 10, # 红包金额的分数
"countScore": 1, # 红包个数的分数
"moneyTypeScore": 5, # 红包种类的分数
"timeScore":10,#开始结束时间分数
}</code></pre>
<pre><code>#优惠券分数
{
"nameScore":5 #优惠券名称的分数
"discountScore": "0.95", # 折扣的分数
"countScore": 1, # 优惠券个数的分数
"moneyTypeScore": 5, # 优惠券种类分数
"timeScore":10,#开始结束时间分数
}</code></pre>
<pre><code>#抵扣券分数
{
"nameScore":5 #抵扣券名称的分数
"countScore": 1, # 抵扣券个数的分数
"fullMinusScore": 10, # 满减的分数
"moneyTypeScore": 5, # 抵扣券种类分数
"timeScore":10,#开始结束时间分数
}</code></pre>