提交 aef0b8b0 编写于 作者: zhouweidong's avatar zhouweidong

修复切面

上级 8288cff6
...@@ -35,11 +35,11 @@ public class DEFieldDefaultValueAspect ...@@ -35,11 +35,11 @@ public class DEFieldDefaultValueAspect
* @param point * @param point
* @throws Exception * @throws Exception
*/ */
@Before(value = "execution(* com.cntmtech.support.core.*.service.*.create(..))") @Before(value = "execution(* ${pub.getPKGCodeName()}.core.*.service.*.create(..))")
public void BeforeCreate(JoinPoint point) throws Exception { public void BeforeCreate(JoinPoint point) throws Exception {
fillDEFieldDefaultValue(point); fillDEFieldDefaultValue(point);
} }
@Before(value = "execution(* com.cntmtech.support.core.*.service.*.createBatch(..))") @Before(value = "execution(* ${pub.getPKGCodeName()}.core.*.service.*.createBatch(..))")
public void BeforeCreateBatch(JoinPoint point) throws Exception { public void BeforeCreateBatch(JoinPoint point) throws Exception {
fillDEFieldDefaultValue(point); fillDEFieldDefaultValue(point);
} }
......
Markdown 格式
0% or
您添加了 0 到此讨论。请谨慎行事。
先完成此消息的编辑!
想要评论请 注册