1、调整业务码;

2、行为日志添加默认的opertor(admin)和optime(当前时间);
This commit is contained in:
zhangdongxu
2018-07-10 17:24:42 +08:00
parent 20c49800d6
commit 72325b50ca
3 changed files with 90 additions and 87 deletions

View File

@@ -371,6 +371,9 @@ public class BaseRestController {
thread.setOperator(source.getOperator());
thread.setVersion(source.getVersion());
thread.setOpTime(source.getOpTime());
}else{
thread.setOperator("admin");
thread.setOpTime(new Date());
}
logger.info("SaveRequestLogThread初始化结束----" + System.currentTimeMillis());
return thread;