|
|
@@ -61,6 +61,7 @@ public class LiveController extends BaseController {
|
|
|
@GetMapping("/list")
|
|
|
public TableDataInfo list(Live live) {
|
|
|
startPage();
|
|
|
+ live.setExcludeCampLive(true);
|
|
|
List<Live> list = liveService.selectLiveList(live);
|
|
|
return getDataTable(list);
|
|
|
}
|
|
|
@@ -72,6 +73,7 @@ public class LiveController extends BaseController {
|
|
|
@Log(title = "直播", businessType = BusinessType.EXPORT)
|
|
|
@GetMapping("/export")
|
|
|
public AjaxResult export(Live live) {
|
|
|
+ live.setExcludeCampLive(true);
|
|
|
List<Live> list = liveService.selectLiveList(live);
|
|
|
ExcelUtil<Live> util = new ExcelUtil<Live>(Live.class);
|
|
|
return util.exportExcel(list, "直播数据");
|