This commit is contained in:
2025-09-25 11:15:13 +08:00
parent 92e544d5c4
commit ecf5dd2c24
5 changed files with 45 additions and 6 deletions

View File

@@ -111,12 +111,19 @@ public class AppCompanyController extends BaseController
}
@GetMapping("/label")
@ApiOperation("公司标签下的公司")
public TableDataInfo label(LabelQuery labelQuery)
public TableDataInfo label(@RequestBody LabelQuery labelQuery)
{
CompanyCard companyCard = companyCardMapper.selectById(labelQuery.getCardId());
startPage();
List<Company> companyList = companyService.label(companyCard,labelQuery);
return getDataTable(companyList);
}
@PostMapping("/register")
@ApiOperation("招聘企业登记")
@BussinessLog(title = "招聘企业登记")
public AjaxResult register(Company company)
{
companyService.register(company);
return AjaxResult.success();
}
}