1. 优化用户全局公司与部门选择的体验

2. 新增规则引擎模块
This commit is contained in:
chenbowen
2025-09-21 21:48:54 +08:00
parent f8c984d627
commit 516ca4aefd
31 changed files with 2241 additions and 13 deletions

View File

@@ -0,0 +1,36 @@
{
"flow": {
"nodes": [
{
"id": "numberCompareNode",
"name": "数值比较节点",
"type": "common",
"clazz": "cn.iocoder.yudao.module.rule.framework.liteflow.component.common.NumberCompareComponent"
},
{
"id": "stringConditionNode",
"name": "字符串条件节点",
"type": "common",
"clazz": "cn.iocoder.yudao.module.rule.framework.liteflow.component.common.StringConditionComponent"
},
{
"id": "mathCalculateNode",
"name": "数学计算节点",
"type": "common",
"clazz": "cn.iocoder.yudao.module.rule.framework.liteflow.component.action.MathCalculateComponent"
},
{
"id": "dataSetNode",
"name": "数据设置节点",
"type": "common",
"clazz": "cn.iocoder.yudao.module.rule.framework.liteflow.component.action.DataSetComponent"
}
],
"chains": [
{
"name": "示例规则链",
"condition": "THEN(numberCompareNode, mathCalculateNode, dataSetNode)"
}
]
}
}