|  |  |  | 
|---|
|  |  |  | * 查询语音任务呼叫记录列表 | 
|---|
|  |  |  | */ | 
|---|
|  |  |  | @PreAuthorize("@ss.hasPermi('smartor:ivrtaskcallrecord:list')") | 
|---|
|  |  |  | @GetMapping("/list") | 
|---|
|  |  |  | public TableDataInfo list(IvrTaskcallrecord ivrTaskcallrecord) | 
|---|
|  |  |  | @PostMapping("/list") | 
|---|
|  |  |  | public TableDataInfo list(@RequestBody IvrTaskcallrecord ivrTaskcallrecord) | 
|---|
|  |  |  | { | 
|---|
|  |  |  | startPage(); | 
|---|
|  |  |  | List<IvrTaskcallrecord> list = ivrTaskcallrecordService.selectIvrTaskcallrecordList(ivrTaskcallrecord); | 
|---|
|  |  |  | 
|---|
|  |  |  | */ | 
|---|
|  |  |  | @PreAuthorize("@ss.hasPermi('smartor:ivrtaskcallrecord:add')") | 
|---|
|  |  |  | @Log(title = "语音任务呼叫记录", businessType = BusinessType.INSERT) | 
|---|
|  |  |  | @PostMapping | 
|---|
|  |  |  | @PostMapping("/add") | 
|---|
|  |  |  | public AjaxResult add(@RequestBody IvrTaskcallrecord ivrTaskcallrecord) | 
|---|
|  |  |  | { | 
|---|
|  |  |  | return toAjax(ivrTaskcallrecordService.insertIvrTaskcallrecord(ivrTaskcallrecord)); | 
|---|
|  |  |  | 
|---|
|  |  |  | */ | 
|---|
|  |  |  | @PreAuthorize("@ss.hasPermi('smartor:ivrtaskcallrecord:edit')") | 
|---|
|  |  |  | @Log(title = "语音任务呼叫记录", businessType = BusinessType.UPDATE) | 
|---|
|  |  |  | @PutMapping | 
|---|
|  |  |  | @PostMapping("/edit") | 
|---|
|  |  |  | public AjaxResult edit(@RequestBody IvrTaskcallrecord ivrTaskcallrecord) | 
|---|
|  |  |  | { | 
|---|
|  |  |  | return toAjax(ivrTaskcallrecordService.updateIvrTaskcallrecord(ivrTaskcallrecord)); | 
|---|
|  |  |  | 
|---|
|  |  |  | */ | 
|---|
|  |  |  | @PreAuthorize("@ss.hasPermi('smartor:ivrtaskcallrecord:remove')") | 
|---|
|  |  |  | @Log(title = "语音任务呼叫记录", businessType = BusinessType.DELETE) | 
|---|
|  |  |  | @DeleteMapping("/{uuids}") | 
|---|
|  |  |  | @GetMapping("/remove/{uuids}") | 
|---|
|  |  |  | public AjaxResult remove(@PathVariable String[] uuids) | 
|---|
|  |  |  | { | 
|---|
|  |  |  | return toAjax(ivrTaskcallrecordService.deleteIvrTaskcallrecordByUuids(uuids)); | 
|---|