Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
假设我有两个输入(input1,input2),我可以定义DMN规则条件如下:
输入 1 > 10 或输入 2 <= 10。
但是,我想定义一个具有多个输入的条件:
输入 1 + 输入 2 > 10
如何使用 DMN 执行此操作?
找到的解决方法如下:
<inputEntry id="id" expressionLanguage="juel"> <text>(input1 + input2) > 1.0</text> </inputEntry>