|
@@ -1321,6 +1321,9 @@ public class ProjectController {
|
|
|
.setContent("同步新增来自泛微的项目数据,共"+insert+"条数据"+"\n"+"同步更新来自泛微的项目数据,共"+update+"条数据"+"\n"+sb.toString())
|
|
|
.setModuleName("项目管理").setOperationTime(LocalDateTime.now())
|
|
|
.setOperatorName(user.getName());
|
|
|
+ if(operationRecord.getContent().length()>1000){
|
|
|
+ operationRecord.setContent(operationRecord.getContent().substring(0,999));
|
|
|
+ }
|
|
|
operationRecordService.save(operationRecord);
|
|
|
httpRespMsg.setMsg("同步新增来自泛微的项目数据,共"+insert+"条数据"+"\n"+"同步更新来自泛微的项目数据,共"+update+"条数据");
|
|
|
return httpRespMsg;
|