|
|
@@ -31,7 +31,7 @@ public class LiveUserLotteryRecordController extends BaseController
|
|
|
/**
|
|
|
* 查询直播用户中奖记录列表
|
|
|
*/
|
|
|
- @PreAuthorize("@ss.hasPermi('live:liveUserLotteryRecord:list')")
|
|
|
+// @PreAuthorize("@ss.hasPermi('live:liveUserLotteryRecord:list')")
|
|
|
@GetMapping("/list")
|
|
|
public TableDataInfo list(LiveUserLotteryRecord liveUserLotteryRecord)
|
|
|
{
|
|
|
@@ -43,7 +43,7 @@ public class LiveUserLotteryRecordController extends BaseController
|
|
|
/**
|
|
|
* 导出直播用户中奖记录列表
|
|
|
*/
|
|
|
- @PreAuthorize("@ss.hasPermi('live:liveUserLotteryRecord:export')")
|
|
|
+// @PreAuthorize("@ss.hasPermi('live:liveUserLotteryRecord:export')")
|
|
|
@Log(title = "直播用户中奖记录", businessType = BusinessType.EXPORT)
|
|
|
@GetMapping("/export")
|
|
|
public AjaxResult export(LiveUserLotteryRecord liveUserLotteryRecord)
|
|
|
@@ -56,7 +56,7 @@ public class LiveUserLotteryRecordController extends BaseController
|
|
|
/**
|
|
|
* 获取直播用户中奖记录详细信息
|
|
|
*/
|
|
|
- @PreAuthorize("@ss.hasPermi('live:liveUserLotteryRecord:query')")
|
|
|
+// @PreAuthorize("@ss.hasPermi('live:liveUserLotteryRecord:query')")
|
|
|
@GetMapping(value = "/{id}")
|
|
|
public AjaxResult getInfo(@PathVariable("id") Long id)
|
|
|
{
|
|
|
@@ -66,7 +66,7 @@ public class LiveUserLotteryRecordController extends BaseController
|
|
|
/**
|
|
|
* 新增直播用户中奖记录
|
|
|
*/
|
|
|
- @PreAuthorize("@ss.hasPermi('live:liveUserLotteryRecord:add')")
|
|
|
+// @PreAuthorize("@ss.hasPermi('live:liveUserLotteryRecord:add')")
|
|
|
@Log(title = "直播用户中奖记录", businessType = BusinessType.INSERT)
|
|
|
@PostMapping
|
|
|
public AjaxResult add(@RequestBody LiveUserLotteryRecord liveUserLotteryRecord)
|
|
|
@@ -77,7 +77,7 @@ public class LiveUserLotteryRecordController extends BaseController
|
|
|
/**
|
|
|
* 修改直播用户中奖记录
|
|
|
*/
|
|
|
- @PreAuthorize("@ss.hasPermi('live:liveUserLotteryRecord:edit')")
|
|
|
+// @PreAuthorize("@ss.hasPermi('live:liveUserLotteryRecord:edit')")
|
|
|
@Log(title = "直播用户中奖记录", businessType = BusinessType.UPDATE)
|
|
|
@PutMapping
|
|
|
public AjaxResult edit(@RequestBody LiveUserLotteryRecord liveUserLotteryRecord)
|
|
|
@@ -88,7 +88,7 @@ public class LiveUserLotteryRecordController extends BaseController
|
|
|
/**
|
|
|
* 删除直播用户中奖记录
|
|
|
*/
|
|
|
- @PreAuthorize("@ss.hasPermi('live:liveUserLotteryRecord:remove')")
|
|
|
+// @PreAuthorize("@ss.hasPermi('live:liveUserLotteryRecord:remove')")
|
|
|
@Log(title = "直播用户中奖记录", businessType = BusinessType.DELETE)
|
|
|
@DeleteMapping("/{ids}")
|
|
|
public AjaxResult remove(@PathVariable Long[] ids)
|
|
|
@@ -99,7 +99,7 @@ public class LiveUserLotteryRecordController extends BaseController
|
|
|
/**
|
|
|
* 查询直播用户中奖记录列表
|
|
|
*/
|
|
|
- @PreAuthorize("@ss.hasPermi('live:liveUserLotteryRecord:list')")
|
|
|
+// @PreAuthorize("@ss.hasPermi('live:liveUserLotteryRecord:list')")
|
|
|
@PostMapping("/info")
|
|
|
public R info(@RequestBody LiveUserLotteryRecord liveUserLotteryRecord)
|
|
|
{
|