| | |
| | | * 查询语音任务呼叫明细列表 |
| | | */ |
| | | @PreAuthorize("@ss.hasPermi('smartor:ivrtaskcalldetail:list')") |
| | | @GetMapping("/list") |
| | | public TableDataInfo list(IvrTaskcalldetail ivrTaskcalldetail) |
| | | @PostMapping("/list") |
| | | public TableDataInfo list(@RequestBody IvrTaskcalldetail ivrTaskcalldetail) |
| | | { |
| | | startPage(); |
| | | List<IvrTaskcalldetail> list = ivrTaskcalldetailService.selectIvrTaskcalldetailList(ivrTaskcalldetail); |
| | |
| | | */ |
| | | @PreAuthorize("@ss.hasPermi('smartor:ivrtaskcalldetail:add')") |
| | | @Log(title = "语音任务呼叫明细", businessType = BusinessType.INSERT) |
| | | @PostMapping |
| | | @PostMapping("/add") |
| | | public AjaxResult add(@RequestBody IvrTaskcalldetail ivrTaskcalldetail) |
| | | { |
| | | return toAjax(ivrTaskcalldetailService.insertIvrTaskcalldetail(ivrTaskcalldetail)); |
| | |
| | | */ |
| | | @PreAuthorize("@ss.hasPermi('smartor:ivrtaskcalldetail:edit')") |
| | | @Log(title = "语音任务呼叫明细", businessType = BusinessType.UPDATE) |
| | | @PutMapping |
| | | @PostMapping("/edit") |
| | | public AjaxResult edit(@RequestBody IvrTaskcalldetail ivrTaskcalldetail) |
| | | { |
| | | return toAjax(ivrTaskcalldetailService.updateIvrTaskcalldetail(ivrTaskcalldetail)); |
| | |
| | | */ |
| | | @PreAuthorize("@ss.hasPermi('smartor:ivrtaskcalldetail:remove')") |
| | | @Log(title = "语音任务呼叫明细", businessType = BusinessType.DELETE) |
| | | @DeleteMapping("/{calldetailids}") |
| | | @GetMapping("/remove/{calldetailids}") |
| | | public AjaxResult remove(@PathVariable String[] calldetailids) |
| | | { |
| | | return toAjax(ivrTaskcalldetailService.deleteIvrTaskcalldetailByCalldetailids(calldetailids)); |