Commit 64417fb4 authored by 赵浩琳's avatar 赵浩琳

手机号修改记录操作人为空默认userId

parent def8b07e
...@@ -461,7 +461,7 @@ public class ModifyPhoneNoServiceImpl implements IModifyPhoneNoService { ...@@ -461,7 +461,7 @@ public class ModifyPhoneNoServiceImpl implements IModifyPhoneNoService {
if (Objects.isNull(record.getApplySource())) { if (Objects.isNull(record.getApplySource())) {
record.setApplySource(ApplySource.CLIENT); record.setApplySource(ApplySource.CLIENT);
} }
record.setOperator("外部系统"); record.setOperator(String.valueOf(user.getId()));
record.setApplyStatusReason(modifyRejectRecord.getRejectReason()); record.setApplyStatusReason(modifyRejectRecord.getRejectReason());
modifyPhoneRecordRepository.saveAndFlush(record); modifyPhoneRecordRepository.saveAndFlush(record);
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment