提交 93d722e6 authored 作者: ljj's avatar ljj

fix(check): 上链新增检查人

上级 7d6eb35c
...@@ -123,14 +123,16 @@ public class CheckBlockServiceImpl implements CheckBlockService { ...@@ -123,14 +123,16 @@ public class CheckBlockServiceImpl implements CheckBlockService {
blockTraceabilityParsing.setBusinessTraceabilityParsingData(TraceabilityParsingData.builder() blockTraceabilityParsing.setBusinessTraceabilityParsingData(TraceabilityParsingData.builder()
.billTypeName("核查") //业务名称 .billTypeName("核查") //业务名称
.fileMd5(localFileMd5) .fileMd5(localFileMd5)
.initiateUnitName(localDetail.getCheckUnit())//发起单位 .unitName(localDetail.getCheckUnit())//发起单位
.operatorUserName(localDetail.getUserAName() + "," + localDetail.getUserBName())
.operationTime(detailDao.findById(detailId).get().getCreateTime())//发起时间 .operationTime(detailDao.findById(detailId).get().getCreateTime())//发起时间
.build()); .build());
blockTraceabilityParsing.setBlockTraceabilityParsingData(TraceabilityParsingData.builder() blockTraceabilityParsing.setBlockTraceabilityParsingData(TraceabilityParsingData.builder()
.billTypeName("核查") //业务名称 .billTypeName("核查") //业务名称
.fileMd5(remoteDetail.getFileMd5()) .fileMd5(remoteDetail.getFileMd5())
.initiateUnitName(remoteDetail.getCheckUnit())//发起单位 .unitName(remoteDetail.getCheckUnit())//发起单位
.operatorUserName(remoteDetail.getUserAName() + "," + remoteDetail.getUserBName())
.operationTime(detailDao.findById(detailId).get().getCreateTime())//发起时间 .operationTime(detailDao.findById(detailId).get().getCreateTime())//发起时间
.build()); .build());
blockTraceabilityParsing.setBlockData(localDetail); blockTraceabilityParsing.setBlockData(localDetail);
......
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论