package com.billion.main.sc.controller;
|
|
import com.billion.common.annotation.Log;
|
import com.billion.common.core.controller.BaseController;
|
import com.billion.common.core.domain.AjaxResult;
|
import com.billion.common.core.page.TableDataInfo;
|
import com.billion.common.enums.BusinessType;
|
import com.billion.common.utils.poi.ExcelUtil;
|
import com.billion.main.sc.domain.ScCollectionParamConf;
|
import com.billion.main.sc.service.IScCollectionParamConfService;
|
import org.springframework.beans.factory.annotation.Autowired;
|
import org.springframework.security.access.prepost.PreAuthorize;
|
import org.springframework.web.bind.annotation.*;
|
|
import javax.servlet.http.HttpServletResponse;
|
import java.util.List;
|
|
/**
|
* 参数采集配置Controller
|
*
|
* @author HDY
|
* @date 2024-11-21
|
*/
|
@RestController
|
@RequestMapping("/sc/collectionParamConf")
|
public class ScCollectionParamConfController extends BaseController
|
{
|
@Autowired
|
private IScCollectionParamConfService scCollectionParamConfService;
|
|
/**
|
* 查询参数采集配置列表
|
*/
|
@PreAuthorize("@ss.hasPermi('sc:collectionParamConf:list')")
|
@GetMapping("/list")
|
public TableDataInfo list(ScCollectionParamConf scCollectionParamConf)
|
{
|
startPage();
|
List<ScCollectionParamConf> list = scCollectionParamConfService.selectScCollectionParamConfList(scCollectionParamConf);
|
return getDataTable(list);
|
}
|
|
/**
|
* 导出参数采集配置列表
|
*/
|
@PreAuthorize("@ss.hasPermi('sc:collectionParamConf:export')")
|
@Log(title = "参数采集配置", businessType = BusinessType.EXPORT)
|
@PostMapping("/export")
|
public void export(HttpServletResponse response, ScCollectionParamConf scCollectionParamConf)
|
{
|
List<ScCollectionParamConf> list = scCollectionParamConfService.selectScCollectionParamConfList(scCollectionParamConf);
|
ExcelUtil<ScCollectionParamConf> util = new ExcelUtil<ScCollectionParamConf>(ScCollectionParamConf.class);
|
util.exportExcel(response, list, "参数采集配置数据");
|
}
|
|
/**
|
* 获取参数采集配置详细信息
|
*/
|
@PreAuthorize("@ss.hasPermi('sc:collectionParamConf:query')")
|
@GetMapping(value = "/{id}")
|
public AjaxResult getInfo(@PathVariable("id") Long id)
|
{
|
return success(scCollectionParamConfService.selectScCollectionParamConfById(id));
|
}
|
|
/**
|
* 新增参数采集配置
|
*/
|
@PreAuthorize("@ss.hasPermi('sc:collectionParamConf:add')")
|
@Log(title = "参数采集配置", businessType = BusinessType.INSERT)
|
@PostMapping
|
public AjaxResult add(@RequestBody ScCollectionParamConf scCollectionParamConf)
|
{
|
return toAjax(scCollectionParamConfService.insertScCollectionParamConf(scCollectionParamConf));
|
}
|
|
/**
|
* 修改参数采集配置
|
*/
|
@PreAuthorize("@ss.hasPermi('sc:collectionParamConf:edit')")
|
@Log(title = "参数采集配置", businessType = BusinessType.UPDATE)
|
@PutMapping
|
public AjaxResult edit(@RequestBody ScCollectionParamConf scCollectionParamConf)
|
{
|
return toAjax(scCollectionParamConfService.updateScCollectionParamConf(scCollectionParamConf));
|
}
|
|
/**
|
* 删除参数采集配置
|
*/
|
@PreAuthorize("@ss.hasPermi('sc:collectionParamConf:remove')")
|
@Log(title = "参数采集配置", businessType = BusinessType.DELETE)
|
@DeleteMapping("/{ids}")
|
public AjaxResult remove(@PathVariable Long[] ids)
|
{
|
return toAjax(scCollectionParamConfService.deleteScCollectionParamConfByIds(ids));
|
}
|
}
|