提交 d6cd0b2b 编写于 作者: tangyaolong's avatar tangyaolong

补充log,便于debug

上级 9e69815e
...@@ -449,7 +449,28 @@ public class DELogicAspect { ...@@ -449,7 +449,28 @@ public class DELogicAspect {
<@validLogic/> <@validLogic/>
} }
<@enum /> public enum LogicExecMode {
/**
* 前附加逻辑
*/
BEFORE("0", "before"),
/**
* 后附加逻辑
*/
AFTER("1", "after"),
/**
*
*/
EXEC("2", "exec");
LogicExecMode(String value, String text) {
this.value = value;
this.text = text;
}
private String value;
private String text;
}
} }
<#else> <#else>
<#comment>加载远程逻辑(动态系统)</#comment> <#comment>加载远程逻辑(动态系统)</#comment>
......
Markdown 格式
0% or
您添加了 0 到此讨论。请谨慎行事。
先完成此消息的编辑!
想要评论请 注册