feat: support map rule

This commit is contained in:
CaiHQ
2022-05-03 15:46:11 +08:00
parent 1957d163b5
commit 4974fb7a90
7 changed files with 258 additions and 268 deletions

8
backend/yjs/ruleHelper.yjs Executable file
View File

@@ -0,0 +1,8 @@
module ruleHelper {
function md5(str) {
return org.bdware.sc.registry.RuleHelper.md5(str);
}
function edp(d1, d2) {
return org.bdware.sc.registry.RuleHelper.edp(d1, d2);
}
}