Commit 876e2c03 by guojuxing

新建商户和超级管理员

parent fd3aa43a
package com.gic.enterprise.utils.log;
import com.gic.store.utils.LogUtils;
import com.gic.enterprise.utils.LogUtils;
import org.aspectj.lang.JoinPoint;
import org.aspectj.lang.annotation.AfterReturning;
import org.aspectj.lang.annotation.Aspect;
......@@ -20,15 +20,15 @@ public class LogAspect {
private static final Logger logger = LoggerFactory.getLogger(LogAspect.class);
@Pointcut("execution(* com.gic.store.service.outer.*.save*(..))")
@Pointcut("execution(* com.gic.enterprise.service.outer.*.save*(..))")
public void saveCell() {
}
@Pointcut("execution(public * com.gic.store.service.outer.*.edit*(..))")
@Pointcut("execution(public * com.gic.enterprise.service.outer.*.edit*(..))")
public void updateCell() {
}
@Pointcut("execution(* com.gic.store.service.outer.*.delete*(..))")
@Pointcut("execution(* com.gic.enterprise.service.outer.*.delete*(..))")
public void deleteCell() {
}
......
......@@ -17,5 +17,6 @@
<!--门店域-->
<dubbo:service interface="com.gic.auth.service.UserApiService" ref="userApiService" timeout="60000" />
<dubbo:reference interface="com.gic.log.api.service.LogApiService" id="logApiService" timeout="60000" />
</beans>
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment