Files
auto-solution/auto-solution-rule/src/main/resources/rules/fire-rule.drl

14 lines
260 B
Plaintext
Raw Normal View History

2026-03-27 10:27:04 +08:00
package rules;
import com.solution.rule.domain.simplerulepojo.Task
rule "任务入口"
agenda-group "打击任务"
when
$task : Task(dataType == "A")
then
kcontext.getKieRuntime().getAgenda()
.getAgendaGroup("MATCH")
.setFocus();
end