package com.ruoyi.web.controller.system; 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.ruoyi.system.domain.VehicleAlertConfig; import com.ruoyi.system.service.IVehicleAlertConfigService; import com.ruoyi.common.utils.poi.ExcelUtil; import com.ruoyi.common.core.page.TableDataInfo; /** * 车辆告警配置Controller * * @author ruoyi * @date 2026-01-12 */ @RestController @RequestMapping("/system/vehicleAlertConfig") public class VehicleAlertConfigController extends BaseController { @Autowired private IVehicleAlertConfigService vehicleAlertConfigService; /** * 查询车辆告警配置列表 */ @PreAuthorize("@ss.hasPermi('system:vehicleAlertConfig:list')") @GetMapping("/list") public TableDataInfo list(VehicleAlertConfig vehicleAlertConfig) { startPage(); List list = vehicleAlertConfigService.selectVehicleAlertConfigList(vehicleAlertConfig); return getDataTable(list); } /** * 导出车辆告警配置列表 */ @PreAuthorize("@ss.hasPermi('system:vehicleAlertConfig:export')") @Log(title = "车辆告警配置", businessType = BusinessType.EXPORT) @PostMapping("/export") public void export(HttpServletResponse response, VehicleAlertConfig vehicleAlertConfig) { List list = vehicleAlertConfigService.selectVehicleAlertConfigList(vehicleAlertConfig); ExcelUtil util = new ExcelUtil(VehicleAlertConfig.class); util.exportExcel(response, list, "车辆告警配置数据"); } /** * 获取车辆告警配置详细信息 */ @PreAuthorize("@ss.hasPermi('system:vehicleAlertConfig:query')") @GetMapping(value = "/{configId}") public AjaxResult getInfo(@PathVariable("configId") Long configId) { return success(vehicleAlertConfigService.selectVehicleAlertConfigByConfigId(configId)); } /** * 新增车辆告警配置 */ @PreAuthorize("@ss.hasPermi('system:vehicleAlertConfig:add')") @Log(title = "车辆告警配置", businessType = BusinessType.INSERT) @PostMapping public AjaxResult add(@RequestBody VehicleAlertConfig vehicleAlertConfig) { vehicleAlertConfig.setCreateBy(getUsername()); return toAjax(vehicleAlertConfigService.insertVehicleAlertConfig(vehicleAlertConfig)); } /** * 修改车辆告警配置 */ @PreAuthorize("@ss.hasPermi('system:vehicleAlertConfig:edit')") @Log(title = "车辆告警配置", businessType = BusinessType.UPDATE) @PutMapping public AjaxResult edit(@RequestBody VehicleAlertConfig vehicleAlertConfig) { vehicleAlertConfig.setUpdateBy(getUsername()); return toAjax(vehicleAlertConfigService.updateVehicleAlertConfig(vehicleAlertConfig)); } /** * 删除车辆告警配置 */ @PreAuthorize("@ss.hasPermi('system:vehicleAlertConfig:remove')") @Log(title = "车辆告警配置", businessType = BusinessType.DELETE) @DeleteMapping("/{configIds}") public AjaxResult remove(@PathVariable Long[] configIds) { return toAjax(vehicleAlertConfigService.deleteVehicleAlertConfigByConfigIds(configIds)); } }