修改企业直播带岗管理

This commit is contained in:
chenshaohua
2026-06-18 00:55:53 +08:00
parent f15a698d14
commit 176f0b1acd
6 changed files with 14 additions and 10 deletions

View File

@@ -93,10 +93,10 @@ public class CompanyJobLiveController extends BaseController
@ApiOperation("按企业id查询公司直播带岗列表")
@PreAuthorize("@ss.hasPermi('cms:live:list')")
@GetMapping("/list")
public TableDataInfo listPage()
public TableDataInfo listPage(CompanyJobLive companyJobLive)
{
startPage();
List<CompanyJobLive> list = companyJobLiveService.selectByCompanyId();
List<CompanyJobLive> list = companyJobLiveService.selectByCompanyId(companyJobLive);
return getDataTable(list);
}
}