12345678910111213141516171819202122 |
- package com.fjhx.flow.controller.flow;
- import com.baomidou.dynamic.datasource.annotation.DS;
- import com.ruoyi.common.constant.DatasourceConstant;
- import org.springframework.web.bind.annotation.*;
- /**
- * <p>
- * 流程节点定义 前端控制器
- * </p>
- *
- * @author
- * @since 2023-03-15
- */
- @DS(DatasourceConstant.BASE)
- @RestController
- @RequestMapping("/flowDefinitionNode")
- public class FlowDefinitionNodeController {
- }
|