|
@@ -463,27 +463,6 @@ public class TicketBoxMgrController extends BaseApiController {
|
|
|
|
|
|
}
|
|
|
|
|
|
- /**
|
|
|
- * 查询单个盲票组绑定的红包奖项或者查询盲票组全部的红包奖项记录
|
|
|
- * @param jsonObject
|
|
|
- * @return
|
|
|
- */
|
|
|
- @PostMapping(value = "/redEnvelopeAward")
|
|
|
- @PreAuthorize("@ss.hasPermi('business:awards:query')")
|
|
|
- @ApiOperation("查询单个盲票组绑定的红包奖项或者查询盲票组全部的红包奖项记录")
|
|
|
- @com.github.xiaoymin.knife4j.annotations.DynamicParameters(properties = {
|
|
|
- @DynamicParameter(name = "boxId", value = "盲票组id", required = true, dataTypeClass = Long.class)
|
|
|
- })
|
|
|
- @ApiResponses(
|
|
|
- @ApiResponse(code = 200, message = "查询成功", response = TicketBox.class)
|
|
|
- )
|
|
|
- public TableDataInfo redEnvelopeAward(@RequestBody JSONObject jsonObject) {
|
|
|
- startPage();
|
|
|
- String boxId = jsonObject.getString("boxId");
|
|
|
- List<TicketAwardsPrizeVO> TicketAwardsPrizeVO = ticketAwardsPrizeService.listPrizeByBoxIdVO(boxId);
|
|
|
- return getDataTable(TicketAwardsPrizeVO);
|
|
|
- }
|
|
|
-
|
|
|
/**
|
|
|
* 线下盲票组停售
|
|
|
* @param
|