| | |
| | | } |
| | | |
| | | /**手动记录特定日志*/ |
| | | public static void record(long uId, int operationType, String msg){ |
| | | docLogService.record(uId,operationType,msg); |
| | | public static void record(long uId,String name, int operationType, String msg){ |
| | | docLogService.record(uId,name,operationType,msg); |
| | | } |
| | | |
| | | /**手动记录特定日志*/ |
| | | public static void record(long uId, int operationType, String msg,String msgDetail){ |
| | | docLogService.record(uId,operationType,msg,msgDetail); |
| | | public static void record(long uId,String name, int operationType, String msg,String msgDetail){ |
| | | docLogService.record(uId,name,operationType,msg,msgDetail); |
| | | } |
| | | /**手动记录特定日志*/ |
| | | public static void record2(HttpServletRequest request,long uId, int operationType, String msg,String msgDetail){ |
| | | docLogService.record2(request,uId,operationType,msg,msgDetail); |
| | | public static void record2(HttpServletRequest request,long uId,String name, int operationType, String msg,String msgDetail){ |
| | | docLogService.record2(request,uId,name,operationType,msg,msgDetail); |
| | | } |
| | | } |