|
|
@ -2,6 +2,9 @@ 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; |
|
|
@ -27,6 +30,7 @@ import com.ruoyi.common.core.page.TableDataInfo; |
|
|
|
* @author ruoyi |
|
|
|
* @date 2024-01-03 |
|
|
|
*/ |
|
|
|
@Api("事件流程配置") |
|
|
|
@RestController |
|
|
|
@RequestMapping("/system/dcProcessConfig") |
|
|
|
public class DcProcessConfigController extends BaseController |
|
|
@ -37,6 +41,7 @@ public class DcProcessConfigController extends BaseController |
|
|
|
/** |
|
|
|
* 查询事件流程配置列表 |
|
|
|
*/ |
|
|
|
@ApiOperation("查询事件流程配置列表") |
|
|
|
@PreAuthorize("@ss.hasPermi('system:dcProcessConfig:list')") |
|
|
|
@GetMapping("/list") |
|
|
|
public TableDataInfo list(DcProcessConfig dcProcessConfig) |
|
|
|