| | |
| | | /** |
| | | * 查询语音任务呼叫明细列表 |
| | | */ |
| | | @PreAuthorize("@ss.hasPermi('smartor:ServiceSubtaskDetail:list')") |
| | | //@PreAuthorize("@ss.hasPermi('smartor:ServiceSubtaskDetail:list')") |
| | | @PostMapping("/list") |
| | | public TableDataInfo list(@RequestBody ServiceSubtaskDetail serviceSubtaskDetail) { |
| | | startPage(); |
| | |
| | | /** |
| | | * 导出语音任务呼叫明细列表 |
| | | */ |
| | | @PreAuthorize("@ss.hasPermi('smartor:ServiceSubtaskDetail:export')") |
| | | //@PreAuthorize("@ss.hasPermi('smartor:ServiceSubtaskDetail:export')") |
| | | @Log(title = "语音任务呼叫明细", businessType = BusinessType.EXPORT) |
| | | @PostMapping("/export") |
| | | public void export(HttpServletResponse response, ServiceSubtaskDetail serviceSubtaskDetail) { |
| | |
| | | /** |
| | | * 获取语音任务呼叫明细详细信息 |
| | | */ |
| | | @PreAuthorize("@ss.hasPermi('smartor:ServiceSubtaskDetail:query')") |
| | | //@PreAuthorize("@ss.hasPermi('smartor:ServiceSubtaskDetail:query')") |
| | | @GetMapping(value = "/{calldetailid}") |
| | | public AjaxResult getInfo(@PathVariable("calldetailid") String calldetailid) { |
| | | return success(ServiceSubtaskDetailService.selectServiceSubtaskDetailByCalldetailid(calldetailid)); |
| | |
| | | /** |
| | | * 新增语音任务呼叫明细 |
| | | */ |
| | | @PreAuthorize("@ss.hasPermi('smartor:ServiceSubtaskDetail:add')") |
| | | //@PreAuthorize("@ss.hasPermi('smartor:ServiceSubtaskDetail:add')") |
| | | @Log(title = "语音任务呼叫明细", businessType = BusinessType.INSERT) |
| | | @PostMapping("/add") |
| | | public AjaxResult add(@RequestBody ServiceSubtaskDetail serviceSubtaskDetail) { |
| | |
| | | /** |
| | | * 修改语音任务呼叫明细 |
| | | */ |
| | | @PreAuthorize("@ss.hasPermi('smartor:ServiceSubtaskDetail:edit')") |
| | | //@PreAuthorize("@ss.hasPermi('smartor:ServiceSubtaskDetail:edit')") |
| | | @Log(title = "语音任务呼叫明细", businessType = BusinessType.UPDATE) |
| | | @PostMapping("/edit") |
| | | public AjaxResult edit(@RequestBody ServiceSubtaskDetail serviceSubtaskDetail) { |
| | |
| | | /** |
| | | * 删除语音任务呼叫明细 |
| | | */ |
| | | @PreAuthorize("@ss.hasPermi('smartor:ServiceSubtaskDetail:remove')") |
| | | //@PreAuthorize("@ss.hasPermi('smartor:ServiceSubtaskDetail:remove')") |
| | | @Log(title = "语音任务呼叫明细", businessType = BusinessType.DELETE) |
| | | @GetMapping("/remove/{calldetailids}") |
| | | public AjaxResult remove(@PathVariable String[] calldetailids) { |