1、删除无用demo代码

2、添加主数据模块项目
This commit is contained in:
2025-10-15 10:05:49 +08:00
parent b850a3779c
commit fd6e2d8ce6
89 changed files with 1312 additions and 2364 deletions

View File

@ -0,0 +1,27 @@
package com.pictc.constant;
/**
* @author 张福财
* @date 2025年10月14日 下午12:00:34
* @Description: 合同相关规则引擎常量
* 规则引擎的常量包括2个部分1、规则编码 2、规则节点编码
*/
public interface ContractLiteflowRule {
String RULE_ARG = "arg";
/**
* 用于演示规则引擎在复杂业务中的使用
* 规则节点test_node_A、test_node_B
* 规则参数为:
* 参数说明:
* */
String RULE_TEST = "RULE_TEST";
String RULE_TEST_NODEA = "test_node_A";
String RULE_TEST_NODEB = "test_node_B";
}