add 填充日志的创建人和修改人 代码规范整改
parent
be38af728b
commit
00ba2d6da9
|
@ -37,7 +37,7 @@ public class ApiAccessLogServiceImpl implements ApiAccessLogService {
|
||||||
ApiAccessLogDO apiAccessLog = BeanUtils.toBean(createDTO, ApiAccessLogDO.class);
|
ApiAccessLogDO apiAccessLog = BeanUtils.toBean(createDTO, ApiAccessLogDO.class);
|
||||||
apiAccessLog.setRequestParams(StrUtil.maxLength(apiAccessLog.getRequestParams(), REQUEST_PARAMS_MAX_LENGTH));
|
apiAccessLog.setRequestParams(StrUtil.maxLength(apiAccessLog.getRequestParams(), REQUEST_PARAMS_MAX_LENGTH));
|
||||||
apiAccessLog.setResultMsg(StrUtil.maxLength(apiAccessLog.getResultMsg(), RESULT_MSG_MAX_LENGTH));
|
apiAccessLog.setResultMsg(StrUtil.maxLength(apiAccessLog.getResultMsg(), RESULT_MSG_MAX_LENGTH));
|
||||||
if(apiAccessLog.getUserId() != null){
|
if (apiAccessLog.getUserId() != null) {
|
||||||
String userIdStr = apiAccessLog.getUserId().toString();
|
String userIdStr = apiAccessLog.getUserId().toString();
|
||||||
apiAccessLog.setCreator(userIdStr);
|
apiAccessLog.setCreator(userIdStr);
|
||||||
apiAccessLog.setUpdater(userIdStr);
|
apiAccessLog.setUpdater(userIdStr);
|
||||||
|
|
|
@ -40,7 +40,7 @@ public class ApiErrorLogServiceImpl implements ApiErrorLogService {
|
||||||
ApiErrorLogDO apiErrorLog = BeanUtils.toBean(createDTO, ApiErrorLogDO.class)
|
ApiErrorLogDO apiErrorLog = BeanUtils.toBean(createDTO, ApiErrorLogDO.class)
|
||||||
.setProcessStatus(ApiErrorLogProcessStatusEnum.INIT.getStatus());
|
.setProcessStatus(ApiErrorLogProcessStatusEnum.INIT.getStatus());
|
||||||
apiErrorLog.setRequestParams(StrUtil.maxLength(apiErrorLog.getRequestParams(), REQUEST_PARAMS_MAX_LENGTH));
|
apiErrorLog.setRequestParams(StrUtil.maxLength(apiErrorLog.getRequestParams(), REQUEST_PARAMS_MAX_LENGTH));
|
||||||
if(apiErrorLog.getUserId() != null){
|
if (apiErrorLog.getUserId() != null) {
|
||||||
String userIdStr = apiErrorLog.getUserId().toString();
|
String userIdStr = apiErrorLog.getUserId().toString();
|
||||||
apiErrorLog.setCreator(userIdStr);
|
apiErrorLog.setCreator(userIdStr);
|
||||||
apiErrorLog.setUpdater(userIdStr);
|
apiErrorLog.setUpdater(userIdStr);
|
||||||
|
|
|
@ -28,7 +28,7 @@ public class OperateLogServiceImpl implements OperateLogService {
|
||||||
@Override
|
@Override
|
||||||
public void createOperateLog(OperateLogCreateReqDTO createReqDTO) {
|
public void createOperateLog(OperateLogCreateReqDTO createReqDTO) {
|
||||||
OperateLogDO log = BeanUtils.toBean(createReqDTO, OperateLogDO.class);
|
OperateLogDO log = BeanUtils.toBean(createReqDTO, OperateLogDO.class);
|
||||||
if(log.getUserId() != null){
|
if (log.getUserId() != null) {
|
||||||
String userIdStr = log.getUserId().toString();
|
String userIdStr = log.getUserId().toString();
|
||||||
log.setCreator(userIdStr);
|
log.setCreator(userIdStr);
|
||||||
log.setUpdater(userIdStr);
|
log.setUpdater(userIdStr);
|
||||||
|
|
Loading…
Reference in New Issue