This commit is contained in:
2025-09-25 11:22:58 +08:00
parent ecf5dd2c24
commit 16864079e9
3 changed files with 19 additions and 1 deletions

View File

@@ -192,5 +192,11 @@ public class AppJobController extends BaseController
rspData.setTotal(total > 200 ? 200 : total);
return rspData;
}
@BussinessLog(title = "移动端发布岗位")
@PostMapping("/publishJob")
public AjaxResult fix(@RequestBody Job job)
{
jobService.publishJob(job);
return success();
}
}