修改:审批人逗号切割未生效问题修复

This commit is contained in:
yangyang01000846
2025-11-18 16:43:32 +08:00
parent 3cc72ef110
commit 55116a83f3

View File

@@ -1842,7 +1842,7 @@ public class MinioFileIDataFileServiceImpl implements IDataFileService {
}
});
String resultStr = sb.toString();
resultStr.substring(0, resultStr.length() - 1);
resultStr = resultStr.substring(0, resultStr.length() - 1);
return resultStr;
} catch (Exception e) {
CoreLogger.error("getCidFlowReviewer error,param:{},errMsg:{}", JSONObject.toJSONString(flowInfos), e.getMessage());