加入流口水



>我有两个数据对象。
1.(Customer(cust_idcust_typefirst_namemiddle_name(
2.(accnt_prtcpnt(cust_idaccnt_idap_first_name(。

我需要在accnt_prtcpntpbject 中的ap_first_name字段上编写一个 Drools 规则,该规则说如果客户对象中的cust_type是"AV",则ap_first_name不应为空。我是流口水的新手,不知道该怎么做。可以使用公共字段cust_id连接这两个数据对象。我也在使用 KIE 工作台。

请帮忙!!

您的规则可能如下所示:

rule "sample rule"
when
$customer : Customer( cust_type == "AV" )
accnt_prtcpnt( cust_id  == $customer.cust_id, ap_first_name == null)
then
// do any action you need
end

您可以使用工作台中的普通 DRL 编辑器或一些引导式编辑器(引导规则、引导式决策表等(

相关内容

  • 没有找到相关文章

最新更新