package com.ruoyi.device.channel.controller; import java.util.List; import javax.servlet.http.HttpServletResponse; import io.swagger.annotations.Api; import io.swagger.annotations.ApiOperation; 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.ruoyi.device.channel.domain.ArdChannel; import com.ruoyi.device.channel.service.IArdChannelService; import com.ruoyi.common.utils.poi.ExcelUtil; import com.ruoyi.common.core.page.TableDataInfo; /** * 通道管理Controller * * @author ard * @date 2023-08-19 */ @RestController @RequestMapping("/device/channel") @Api(tags = "通道管理接口") public class ArdChannelController extends BaseController { @Autowired private IArdChannelService ardChannelService; /** * 查询通道管理列表 */ @ApiOperation("查询通道管理列表") // @PreAuthorize("@ss.hasPermi('device:channel:list')") @GetMapping("/list") public TableDataInfo list(ArdChannel ardChannel) { startPage(); List list = ardChannelService.selectArdChannelList(ardChannel); return getDataTable(list); } /** * 导出通道管理列表 */ @PreAuthorize("@ss.hasPermi('device:channel:export')") @Log(title = "通道管理", businessType = BusinessType.EXPORT) @PostMapping("/export") public void export(HttpServletResponse response, ArdChannel ardChannel) { List list = ardChannelService.selectArdChannelList(ardChannel); ExcelUtil util = new ExcelUtil(ArdChannel.class); util.exportExcel(response, list, "通道管理数据"); } /** * 获取通道管理详细信息 */ @ApiOperation("获取通道管理详细信息") // @PreAuthorize("@ss.hasPermi('device:channel:query')") @GetMapping(value = "/{id}") public AjaxResult getInfo(@PathVariable("id") String id) { return success(ardChannelService.selectArdChannelById(id)); } /** * 新增通道管理 */ @PreAuthorize("@ss.hasPermi('device:channel:add')") @Log(title = "通道管理", businessType = BusinessType.INSERT) @PostMapping public AjaxResult add(@RequestBody ArdChannel ardChannel) { return toAjax(ardChannelService.insertArdChannel(ardChannel)); } /** * 修改通道管理 */ @PreAuthorize("@ss.hasPermi('device:channel:edit')") @Log(title = "通道管理", businessType = BusinessType.UPDATE) @PutMapping public AjaxResult edit(@RequestBody ArdChannel ardChannel) { return toAjax(ardChannelService.updateArdChannel(ardChannel)); } /** * 删除通道管理 */ @PreAuthorize("@ss.hasPermi('device:channel:remove')") @Log(title = "通道管理", businessType = BusinessType.DELETE) @DeleteMapping("/{ids}") public AjaxResult remove(@PathVariable String[] ids) { return toAjax(ardChannelService.deleteArdChannelByIds(ids)); } }