| | |
| | | return new ResponseEntity<>(HttpStatus.ACCEPTED); |
| | | } |
| | | |
| | | @DeleteMapping("/favorite/{agentNo}") |
| | | public ResponseEntity<Void> removeConsultantFromCustomList(@PathVariable String agentNo) { |
| | | consultantService.removeConsultantFromCustomList(agentNo); |
| | | return new ResponseEntity<>(HttpStatus.OK); |
| | | } |
| | | |
| | | |
| | | @PostMapping("/strictQuery") |
| | | public ResponseEntity<List<ConsultantDTO>> strictQueryConsultant(@RequestBody StrictQueryConsultantParam param) { |
| | | List<ConsultantDTO> queryResult = consultantService.strictQueryConsultant(param); |