学工管理系统




@RestController
@RequestMapping("/internship")
public class InternshipController {
@Autowired
private InternshipService internshipService;
@GetMapping("/apply")
public ResponseEntity> apply(@RequestParam Long studentId, @RequestParam Long positionId) {
return ResponseEntity.ok(internshipService.apply(studentId, positionId));
}
@GetMapping("/list")
public ResponseEntity> list(@RequestParam String role) {
return ResponseEntity.ok(internshipService.listByRole(role));
}
}