| 123456789101112131415161718 |
- package rules;
- import cn.iocoder.yudao.module.iscs.dal.dataobject.Person;
- dialect "mvel" // 默认就是MVEL表达式语言
- rule "checkHighSalary"
- when
- $p : Person(age > 30 && salary >= 10000)
- then
- System.out.println("警告:[" + $p.getName() + "]薪资过高!");
- end
- rule "checkHighSalary2"
- when
- $p : Person(age > 20 && salary >= 12000)
- then
- System.out.println("警告:[" + $p.getName() + "]薪资过高2!");
- end
|