{
"branches": [
{
"id": "branch1",
"name": "VIP用户",
"orList": [
{
"andList": [
{
"query": "${user.level}",
"operator": "eq",
"value": "VIP"
}
]
}
]
},
{
"id": "branch2",
"name": "普通用户",
"orList": [
{
"andList": [
{
"query": "${user.level}",
"operator": "eq",
"value": "NORMAL"
}
]
}
]
}
]
}{
"branches": [
{
"id": "high_priority",
"name": "高优先级",
"orList": [
{
"andList": [
{
"query": "${order.amount}",
"operator": "gt",
"value": 1000
},
{
"query": "${user.vipLevel}",
"operator": "ge",
"value": 3
}
]
}
]
},
{
"id": "medium_priority",
"name": "中优先级",
"orList": [
{
"andList": [
{
"query": "${order.amount}",
"operator": "gt",
"value": 500
}
]
}
]
},
{
"id": "low_priority",
"name": "低优先级",
"orList": [
{
"andList": [
{
"query": "${order.amount}",
"operator": "le",
"value": 500
}
]
}
]
}
]
}{
"branches": [
{
"id": "urgent",
"name": "紧急处理",
"orList": [
{
"andList": [
{
"query": "${task.priority}",
"operator": "eq",
"value": "URGENT"
}
]
},
{
"andList": [
{
"query": "${task.dueDate}",
"operator": "lt",
"value": "${currentDate}"
}
]
}
]
}
]
}{
"id": "default-branch",
"name": "default"
}{
"id": "branch1",
"name": "VIP用户",
"orList": [...]
}{
"id": "default-branch",
"name": "default"
}{
"dynamicBranches": [
{
"condition": "${config.enableBranchA}",
"branch": {
"id": "branchA",
"name": "动态分支A",
"orList": [...]
}
}
]
}{
"weightedBranches": [
{
"branch": "branch1",
"weight": 0.7
},
{
"branch": "branch2",
"weight": 0.3
}
]
}{
"cacheConditions": true,
"cacheTimeout": 300
}