liusheng
2024-09-18 907641e56c2085aaa81f267946dc3e3e9fca73e7
ruoyi-admin/src/main/java/com/ruoyi/web/controller/smartor/IvrLibaExtemplateController.java
@@ -34,7 +34,7 @@
     * 查询通过模板列表
     */
    @ApiOperation("查询通过模板列表")
    @PreAuthorize("@ss.hasPermi('smartor:extemplate:list')")
    //@PreAuthorize("@ss.hasPermi('smartor:extemplate:list')")
    @PostMapping("/list")
    public TableDataInfo list(@RequestBody IvrLibaExtemplate ivrLibaExtemplate) {
        startPage();
@@ -46,7 +46,7 @@
     * 导出通过模板列表
     */
    @ApiOperation("导出通过模板列表")
    @PreAuthorize("@ss.hasPermi('smartor:extemplate:export')")
    //@PreAuthorize("@ss.hasPermi('smartor:extemplate:export')")
    @Log(title = "通过模板", businessType = BusinessType.EXPORT)
    @PostMapping("/export")
    public void export(HttpServletResponse response, IvrLibaExtemplate ivrLibaExtemplate) {
@@ -59,7 +59,7 @@
     * 获取通过模板详细信息
     */
    @ApiOperation("获取通过模板详细信息")
    @PreAuthorize("@ss.hasPermi('smartor:extemplate:query')")
    //@PreAuthorize("@ss.hasPermi('smartor:extemplate:query')")
    @GetMapping(value = "/{ID}")
    public AjaxResult getInfo(@PathVariable("ID") String ID) {
        return success(ivrLibaExtemplateService.selectIvrLibaExtemplateByID(ID));
@@ -69,7 +69,7 @@
     * 新增通过模板
     */
    @ApiOperation("新增通过模板")
    @PreAuthorize("@ss.hasPermi('smartor:extemplate:add')")
    //@PreAuthorize("@ss.hasPermi('smartor:extemplate:add')")
    @Log(title = "通过模板", businessType = BusinessType.INSERT)
    @PostMapping("/add")
    public AjaxResult add(@RequestBody IvrLibaExtemplate ivrLibaExtemplate) {
@@ -80,7 +80,7 @@
     * 修改通过模板
     */
    @ApiOperation("修改通过模板")
    @PreAuthorize("@ss.hasPermi('smartor:extemplate:edit')")
    //@PreAuthorize("@ss.hasPermi('smartor:extemplate:edit')")
    @Log(title = "通过模板", businessType = BusinessType.UPDATE)
    @PostMapping("/edit")
    public AjaxResult edit(@RequestBody IvrLibaExtemplate ivrLibaExtemplate) {
@@ -91,7 +91,7 @@
     * 删除通过模板
     */
    @ApiOperation("删除通过模板")
    @PreAuthorize("@ss.hasPermi('smartor:extemplate:remove')")
    //@PreAuthorize("@ss.hasPermi('smartor:extemplate:remove')")
    @Log(title = "通过模板", businessType = BusinessType.DELETE)
    @GetMapping("/remove/{IDs}")
    public AjaxResult remove(@PathVariable Long[] IDs) {