|
|
|
package com.zc.business.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.zc.business.domain.DcProcessConfig;
|
|
|
|
import com.zc.business.service.IDcProcessConfigService;
|
|
|
|
import com.ruoyi.common.utils.poi.ExcelUtil;
|
|
|
|
import com.ruoyi.common.core.page.TableDataInfo;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* 事件流程配置Controller
|
|
|
|
*
|
|
|
|
* @author ruoyi
|
|
|
|
* @date 2024-01-03
|
|
|
|
*/
|
|
|
|
@RestController
|
|
|
|
@RequestMapping("/business/dcProcessConfig")
|
|
|
|
public class DcProcessConfigController extends BaseController
|
|
|
|
{
|
|
|
|
@Autowired
|
|
|
|
private IDcProcessConfigService dcProcessConfigService;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* 查询事件流程配置列表
|
|
|
|
*/
|
|
|
|
@PreAuthorize("@ss.hasPermi('business:dcProcessConfig:list')")
|
|
|
|
@GetMapping("/list")
|
|
|
|
public TableDataInfo list(DcProcessConfig dcProcessConfig)
|
|
|
|
{
|
|
|
|
startPage();
|
|
|
|
List<DcProcessConfig> list = dcProcessConfigService.selectDcProcessConfigList(dcProcessConfig);
|
|
|
|
return getDataTable(list);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* 导出事件流程配置列表
|
|
|
|
*/
|
|
|
|
@PreAuthorize("@ss.hasPermi('business:dcProcessConfig:export')")
|
|
|
|
@Log(title = "事件流程配置", businessType = BusinessType.EXPORT)
|
|
|
|
@PostMapping("/export")
|
|
|
|
public void export(HttpServletResponse response, DcProcessConfig dcProcessConfig)
|
|
|
|
{
|
|
|
|
List<DcProcessConfig> list = dcProcessConfigService.selectDcProcessConfigList(dcProcessConfig);
|
|
|
|
ExcelUtil<DcProcessConfig> util = new ExcelUtil<>(DcProcessConfig.class);
|
|
|
|
util.exportExcel(response, list, "事件流程配置数据");
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* 获取事件流程配置详细信息
|
|
|
|
*/
|
|
|
|
@PreAuthorize("@ss.hasPermi('business:dcProcessConfig:query')")
|
|
|
|
@GetMapping(value = "/{id}")
|
|
|
|
public AjaxResult getInfo(@PathVariable("id") Long id)
|
|
|
|
{
|
|
|
|
return AjaxResult.success(dcProcessConfigService.selectDcProcessConfigById(id));
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* 新增事件流程配置
|
|
|
|
*/
|
|
|
|
@PreAuthorize("@ss.hasPermi('business:dcProcessConfig:add')")
|
|
|
|
@Log(title = "事件流程配置", businessType = BusinessType.INSERT)
|
|
|
|
@PostMapping
|
|
|
|
public AjaxResult add(@RequestBody DcProcessConfig dcProcessConfig)
|
|
|
|
{
|
|
|
|
return toAjax(dcProcessConfigService.insertDcProcessConfig(dcProcessConfig));
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* 修改事件流程配置
|
|
|
|
*/
|
|
|
|
@PreAuthorize("@ss.hasPermi('business:dcProcessConfig:edit')")
|
|
|
|
@Log(title = "事件流程配置", businessType = BusinessType.UPDATE)
|
|
|
|
@PutMapping
|
|
|
|
public AjaxResult edit(@RequestBody DcProcessConfig dcProcessConfig)
|
|
|
|
{
|
|
|
|
return toAjax(dcProcessConfigService.updateDcProcessConfig(dcProcessConfig));
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* 删除事件流程配置
|
|
|
|
*/
|
|
|
|
@PreAuthorize("@ss.hasPermi('business:dcProcessConfig:remove')")
|
|
|
|
@Log(title = "事件流程配置", businessType = BusinessType.DELETE)
|
|
|
|
@DeleteMapping("/{ids}")
|
|
|
|
public AjaxResult remove(@PathVariable Long[] ids)
|
|
|
|
{
|
|
|
|
return toAjax(dcProcessConfigService.deleteDcProcessConfigByIds(ids));
|
|
|
|
}
|
|
|
|
}
|