| | |
| | | public void doAfterReturnOperation(JoinPoint point,Object resp){ |
| | | //用户id |
| | | Long uId = ActionUtil.getUser().getId(); |
| | | String name=ActionUtil.getUser().getName(); |
| | | |
| | | Signature signature = point.getSignature(); |
| | | String methodSignature = signature.toString(); |
| | |
| | | String operationDetail = "具体调用方法为:"+methodName+",具体参数为:"+map.toString(); |
| | | |
| | | |
| | | service.recordOperationLog(uId,operationType,operationTime,terminalIp,operationMsg,operationDetail); |
| | | service.recordOperationLog(uId,name,operationType,operationTime,terminalIp,operationMsg,operationDetail); |
| | | |
| | | } |
| | | |