14 lines
260 B
Plaintext
14 lines
260 B
Plaintext
|
|
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
|