我们提供学生信息管理系统招投标所需全套资料,包括学工系统介绍PPT、学生管理系统产品解决方案、
学生管理系统产品技术参数,以及对应的标书参考文件,详请联系客服。
@RestController
@RequestMapping("/api/agent-price")
public class AgentPriceController {
@Autowired
private AgentPriceService agentPriceService;
@GetMapping("/{studentId}")
public ResponseEntity
return ResponseEntity.ok(agentPriceService.getAgentPrice(studentId));
}
@PostMapping
public ResponseEntity
return ResponseEntity.status(HttpStatus.CREATED).body(agentPriceService.createAgentPrice(agentPrice));
}
}