修复了(小程序端用户根据推广码申请记录id查询结算记录)接口
This commit is contained in:
parent
f4af1dd855
commit
aa209d807f
|
@ -123,10 +123,9 @@ public class OperateLogAspect {
|
||||||
methodName = className + "." + methodName + "()";
|
methodName = className + "." + methodName + "()";
|
||||||
// 获取操作
|
// 获取操作
|
||||||
SysLog sysLog = method.getAnnotation(SysLog.class);
|
SysLog sysLog = method.getAnnotation(SysLog.class);
|
||||||
if (sysLog != null) {
|
if (sysLog == null) return ;
|
||||||
sysOperLog.setTitle(sysLog.title());//设置模块名称
|
sysOperLog.setTitle(sysLog.title());//设置模块名称
|
||||||
sysOperLog.setContent(sysLog.content());//设置日志内容
|
sysOperLog.setContent(sysLog.content());//设置日志内容
|
||||||
}
|
|
||||||
// 将入参转换成json
|
// 将入参转换成json
|
||||||
String params = argsArrayToString(joinPoint.getArgs());
|
String params = argsArrayToString(joinPoint.getArgs());
|
||||||
sysOperLog.setMethod(methodName); //设置请求方法
|
sysOperLog.setMethod(methodName); //设置请求方法
|
||||||
|
|
Loading…
Reference in New Issue
Block a user