修复了(小程序端用户根据推广码申请记录id查询结算记录)接口

This commit is contained in:
chen-xin-zhi 2025-06-03 19:01:34 +08:00
parent f4af1dd855
commit aa209d807f

View File

@ -123,10 +123,9 @@ public class OperateLogAspect {
methodName = className + "." + methodName + "()";
// 获取操作
SysLog sysLog = method.getAnnotation(SysLog.class);
if (sysLog != null) {
if (sysLog == null) return ;
sysOperLog.setTitle(sysLog.title());//设置模块名称
sysOperLog.setContent(sysLog.content());//设置日志内容
}
// 将入参转换成json
String params = argsArrayToString(joinPoint.getArgs());
sysOperLog.setMethod(methodName); //设置请求方法