106 lines
3.7 KiB
Java
106 lines
3.7 KiB
Java
package com.ruoyi.rocketmq.controller;
|
|||
|
|
|
||
|
|
import java.util.List;
|
||
|
|
import java.io.IOException;
|
||
|
|
import javax.servlet.http.HttpServletResponse;
|
||
|
|
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.log.annotation.Log;
|
||
|
|
import com.ruoyi.common.log.enums.BusinessType;
|
||
|
|
import com.ruoyi.common.security.annotation.RequiresPermissions;
|
||
|
|
import com.ruoyi.rocketmq.domain.InitialDiskInfo;
|
||
|
|
import com.ruoyi.rocketmq.service.IInitialDiskInfoService;
|
||
|
|
import com.ruoyi.common.core.web.controller.BaseController;
|
||
|
|
import com.ruoyi.common.core.web.domain.AjaxResult;
|
||
|
|
import com.ruoyi.common.core.utils.poi.ExcelUtil;
|
||
|
|
import com.ruoyi.common.core.web.page.TableDataInfo;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* 磁盘监控信息Controller
|
||
|
|
*
|
||
|
|
* @author gyt
|
||
|
|
* @date 2025-08-25
|
||
|
|
*/
|
||
|
|
@RestController
|
||
|
|
@RequestMapping("/diskInfo")
|
||
|
|
public class InitialDiskInfoController extends BaseController
|
||
|
|
{
|
||
|
|
@Autowired
|
||
|
|
private IInitialDiskInfoService initialDiskInfoService;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* 查询磁盘监控信息列表
|
||
|
|
*/
|
||
|
|
@RequiresPermissions("rocketmq:diskInfo:list")
|
||
|
|
@GetMapping("/list")
|
||
|
|
public TableDataInfo list(InitialDiskInfo initialDiskInfo)
|
||
|
|
{
|
||
|
|
startPage();
|
||
|
|
List<InitialDiskInfo> list = initialDiskInfoService.selectInitialDiskInfoList(initialDiskInfo);
|
||
|
|
return getDataTable(list);
|
||
|
|
}
|
||
|
|
|
||
|
|
/**
|
||
|
|
* 导出磁盘监控信息列表
|
||
|
|
*/
|
||
|
|
@RequiresPermissions("rocketmq:diskInfo:export")
|
||
|
|
@Log(title = "磁盘监控信息", businessType = BusinessType.EXPORT)
|
||
|
|
@PostMapping("/export")
|
||
|
|
public void export(HttpServletResponse response, InitialDiskInfo initialDiskInfo)
|
||
|
|
{
|
||
|
|
List<InitialDiskInfo> list = initialDiskInfoService.selectInitialDiskInfoList(initialDiskInfo);
|
||
|
|
ExcelUtil<InitialDiskInfo> util = new ExcelUtil<InitialDiskInfo>(InitialDiskInfo.class);
|
||
|
|
util.exportExcel(response, list, "磁盘监控信息数据");
|
||
|
|
}
|
||
|
|
|
||
|
|
/**
|
||
|
|
* 获取磁盘监控信息详细信息
|
||
|
|
*/
|
||
|
|
@RequiresPermissions("rocketmq:diskInfo:query")
|
||
|
|
@GetMapping(value = "/{id}")
|
||
|
|
public AjaxResult getInfo(@PathVariable("id") Long id)
|
||
|
|
{
|
||
|
|
return success(initialDiskInfoService.selectInitialDiskInfoById(id));
|
||
|
|
}
|
||
|
|
|
||
|
|
/**
|
||
|
|
* 新增磁盘监控信息
|
||
|
|
*/
|
||
|
|
@RequiresPermissions("rocketmq:diskInfo:add")
|
||
|
|
@Log(title = "磁盘监控信息", businessType = BusinessType.INSERT)
|
||
|
|
@PostMapping
|
||
|
|
public AjaxResult add(@RequestBody InitialDiskInfo initialDiskInfo)
|
||
|
|
{
|
||
|
|
return toAjax(initialDiskInfoService.insertInitialDiskInfo(initialDiskInfo));
|
||
|
|
}
|
||
|
|
|
||
|
|
/**
|
||
|
|
* 修改磁盘监控信息
|
||
|
|
*/
|
||
|
|
@RequiresPermissions("rocketmq:diskInfo:edit")
|
||
|
|
@Log(title = "磁盘监控信息", businessType = BusinessType.UPDATE)
|
||
|
|
@PutMapping
|
||
|
|
public AjaxResult edit(@RequestBody InitialDiskInfo initialDiskInfo)
|
||
|
|
{
|
||
|
|
return toAjax(initialDiskInfoService.updateInitialDiskInfo(initialDiskInfo));
|
||
|
|
}
|
||
|
|
|
||
|
|
/**
|
||
|
|
* 删除磁盘监控信息
|
||
|
|
*/
|
||
|
|
@RequiresPermissions("rocketmq:diskInfo:remove")
|
||
|
|
@Log(title = "磁盘监控信息", businessType = BusinessType.DELETE)
|
||
|
|
@DeleteMapping("/{ids}")
|
||
|
|
public AjaxResult remove(@PathVariable Long[] ids)
|
||
|
|
{
|
||
|
|
return toAjax(initialDiskInfoService.deleteInitialDiskInfoByIds(ids));
|
||
|
|
}
|
||
|
|
}
|