package com.smartor.controller; 
 | 
  
 | 
import java.util.List; 
 | 
import javax.servlet.http.HttpServletResponse; 
 | 
import org.springframework.security.access.prepost.PreAuthorize; 
 | 
import org.springframework.beans.factory.annotation.Autowired; 
 | 
import org.springframework.web.bind.annotation.GetMapping; 
 | 
import org.springframework.web.bind.annotation.PostMapping; 
 | 
import org.springframework.web.bind.annotation.PutMapping; 
 | 
import org.springframework.web.bind.annotation.DeleteMapping; 
 | 
import org.springframework.web.bind.annotation.PathVariable; 
 | 
import org.springframework.web.bind.annotation.RequestBody; 
 | 
import org.springframework.web.bind.annotation.RequestMapping; 
 | 
import org.springframework.web.bind.annotation.RestController; 
 | 
import com.ruoyi.common.annotation.Log; 
 | 
import com.ruoyi.common.core.controller.BaseController; 
 | 
import com.ruoyi.common.core.domain.AjaxResult; 
 | 
import com.ruoyi.common.enums.BusinessType; 
 | 
import com.smartor.domain.IvrScene; 
 | 
import com.smartor.service.IIvrSceneService; 
 | 
import com.ruoyi.common.utils.poi.ExcelUtil; 
 | 
import com.ruoyi.common.core.page.TableDataInfo; 
 | 
  
 | 
/** 
 | 
 * AI外呼场景管理Controller 
 | 
 *  
 | 
 * @author smartor 
 | 
 * @date 2023-03-06 
 | 
 */ 
 | 
@RestController 
 | 
@RequestMapping("/smartor/ivrscene") 
 | 
public class IvrSceneController extends BaseController 
 | 
{ 
 | 
    @Autowired 
 | 
    private IIvrSceneService ivrSceneService; 
 | 
  
 | 
    /** 
 | 
     * 查询AI外呼场景管理列表 
 | 
     */ 
 | 
    //@PreAuthorize("@ss.hasPermi('smartor:ivrscene:list')") 
 | 
   @PostMapping("/list") 
 | 
    public TableDataInfo list(@RequestBody IvrScene ivrScene) 
 | 
    { 
 | 
        startPage(); 
 | 
        List<IvrScene> list = ivrSceneService.selectIvrSceneList(ivrScene); 
 | 
        return getDataTable(list); 
 | 
    } 
 | 
  
 | 
    /** 
 | 
     * 导出AI外呼场景管理列表 
 | 
     */ 
 | 
    //@PreAuthorize("@ss.hasPermi('smartor:ivrscene:export')") 
 | 
    @Log(title = "AI外呼场景管理", businessType = BusinessType.EXPORT) 
 | 
    @PostMapping("/export") 
 | 
    public void export(HttpServletResponse response, IvrScene ivrScene) 
 | 
    { 
 | 
        List<IvrScene> list = ivrSceneService.selectIvrSceneList(ivrScene); 
 | 
        ExcelUtil<IvrScene> util = new ExcelUtil<IvrScene>(IvrScene.class); 
 | 
        util.exportExcel(response, list, "AI外呼场景管理数据"); 
 | 
    } 
 | 
  
 | 
    /** 
 | 
     * 获取AI外呼场景管理详细信息 
 | 
     */ 
 | 
    //@PreAuthorize("@ss.hasPermi('smartor:ivrscene:query')") 
 | 
    @GetMapping(value = "/{sceneid}") 
 | 
    public AjaxResult getInfo(@PathVariable("sceneid") Long sceneid) 
 | 
    { 
 | 
        return success(ivrSceneService.selectIvrSceneBySceneid(sceneid)); 
 | 
    } 
 | 
  
 | 
    /** 
 | 
     * 新增AI外呼场景管理 
 | 
     */ 
 | 
    //@PreAuthorize("@ss.hasPermi('smartor:ivrscene:add')") 
 | 
    @Log(title = "AI外呼场景管理", businessType = BusinessType.INSERT) 
 | 
    @PostMapping("/add") 
 | 
    public AjaxResult add(@RequestBody IvrScene ivrScene) 
 | 
    { 
 | 
        return toAjax(ivrSceneService.insertIvrScene(ivrScene)); 
 | 
    } 
 | 
  
 | 
    /** 
 | 
     * 修改AI外呼场景管理 
 | 
     */ 
 | 
    //@PreAuthorize("@ss.hasPermi('smartor:ivrscene:edit')") 
 | 
    @Log(title = "AI外呼场景管理", businessType = BusinessType.UPDATE) 
 | 
    @PostMapping("/edit") 
 | 
    public AjaxResult edit(@RequestBody IvrScene ivrScene) 
 | 
    { 
 | 
        return toAjax(ivrSceneService.updateIvrScene(ivrScene)); 
 | 
    } 
 | 
  
 | 
    /** 
 | 
     * 删除AI外呼场景管理 
 | 
     */ 
 | 
    //@PreAuthorize("@ss.hasPermi('smartor:ivrscene:remove')") 
 | 
    @Log(title = "AI外呼场景管理", businessType = BusinessType.DELETE) 
 | 
    @GetMapping("/remove/{sceneids}") 
 | 
    public AjaxResult remove(@PathVariable Long[] sceneids) 
 | 
    { 
 | 
        return toAjax(ivrSceneService.deleteIvrSceneBySceneids(sceneids)); 
 | 
    } 
 | 
} 
 |