审核数据添加

This commit is contained in:
lg
2025-10-28 09:44:33 +08:00
parent 0126d44761
commit fe5b5473dd
24 changed files with 24 additions and 24 deletions

View File

@ -265,7 +265,7 @@ public class XzdBidPreProjectServiceImpl extends ServiceImpl<XzdBidPreProjectMap
log.info("标前立项审核任务执行了{}", processEvent.toString());
String id = processEvent.getBusinessId();
XzdBidPreProject vo = baseMapper.selectById(Long.valueOf(id));
if (vo != null) {
if (vo == null) {
return;
}
vo.setAuditStatus(processEvent.getStatus());

View File

@ -236,7 +236,7 @@ public class XzdProjectRiskAssessmentServiceImpl extends ServiceImpl<XzdProjectR
log.info("项目风险评估签审意见审核任务执行了{}", processEvent.toString());
String id = processEvent.getBusinessId();
XzdProjectRiskAssessment vo = baseMapper.selectById(Long.valueOf(id));
if (vo != null) {
if (vo == null) {
return;
}
vo.setAuditStatus(processEvent.getStatus());

View File

@ -215,7 +215,7 @@ public class XzdBiddingFileEstimateServiceImpl extends ServiceImpl<XzdBiddingFil
log.info("招标文件审估审核任务执行了{}", processEvent.toString());
String id = processEvent.getBusinessId();
XzdBiddingFileEstimate vo = baseMapper.selectById(Long.valueOf(id));
if (vo != null) {
if (vo == null) {
return;
}
vo.setAuditStatus(processEvent.getStatus());

View File

@ -287,7 +287,7 @@ public class XzdBiddingDocumentServiceImpl extends ServiceImpl<XzdBiddingDocumen
log.info("投标文件审核任务执行了{}", processEvent.toString());
String id = processEvent.getBusinessId();
XzdBiddingDocument vo = baseMapper.selectById(Long.valueOf(id));
if (vo != null) {
if (vo == null) {
return;
}
vo.setAuditStatus(processEvent.getStatus());

View File

@ -227,7 +227,7 @@ public class XzdBidDepositPaymentServiceImpl extends ServiceImpl<XzdBidDepositPa
log.info("投标保证金缴纳审核任务执行了{}", processEvent.toString());
String id = processEvent.getBusinessId();
XzdBidDepositPayment vo = baseMapper.selectById(Long.valueOf(id));
if (vo != null) {
if (vo == null) {
return;
}
vo.setAuditStatus(processEvent.getStatus());

View File

@ -241,7 +241,7 @@ public class XzdBidDepositRecoveryServiceImpl extends ServiceImpl<XzdBidDepositR
log.info("投标保证金收回审核任务执行了{}", processEvent.toString());
String id = processEvent.getBusinessId();
XzdBidDepositRecovery vo = baseMapper.selectById(Long.valueOf(id));
if (vo != null) {
if (vo == null) {
return;
}
vo.setAuditStatus(processEvent.getStatus());

View File

@ -207,7 +207,7 @@ public class XzdBiddingAgencyFeePaymentServiceImpl extends ServiceImpl<XzdBiddin
log.info("招标代理服务费支付申请审核任务执行了{}", processEvent.toString());
String id = processEvent.getBusinessId();
XzdBiddingAgencyFeePayment vo = baseMapper.selectById(Long.valueOf(id));
if (vo != null) {
if (vo == null) {
return;
}
vo.setAuditStatus(processEvent.getStatus());

View File

@ -212,7 +212,7 @@ public class XzdPostBidAnalysisServiceImpl extends ServiceImpl<XzdPostBidAnalysi
log.info("标后分析审核任务执行了{}", processEvent.toString());
String id = processEvent.getBusinessId();
XzdPostBidAnalysis vo = baseMapper.selectById(Long.valueOf(id));
if (vo != null) {
if (vo == null) {
return;
}
vo.setAuditStatus(processEvent.getStatus());

View File

@ -239,7 +239,7 @@ public class XzdPurchaseContractSuspendServiceImpl extends ServiceImpl<XzdPurcha
log.info("采购合同终止审核任务执行了{}", processEvent.toString());
String id = processEvent.getBusinessId();
XzdPurchaseContractSuspend vo = baseMapper.selectById(Long.valueOf(id));
if (vo != null) {
if (vo == null) {
return;
}
vo.setAuditStatus(processEvent.getStatus());

View File

@ -417,7 +417,7 @@ public class XzdPurchaseContractAlterationServiceImpl extends ServiceImpl<XzdPur
log.info("采购合同变更审核任务执行了{}", processEvent.toString());
String id = processEvent.getBusinessId();
XzdPurchaseContractAlteration vo = baseMapper.selectById(Long.valueOf(id));
if (vo != null) {
if (vo == null) {
return;
}
vo.setAuditStatus(processEvent.getStatus());

View File

@ -403,7 +403,7 @@ public class XzdSubcontractChangeServiceImpl extends ServiceImpl<XzdSubcontractC
log.info("分包合同变更审核任务执行了{}", processEvent.toString());
String id = processEvent.getBusinessId();
XzdSubcontractChange vo = baseMapper.selectById(Long.valueOf(id));
if (vo != null) {
if (vo == null) {
return;
}
vo.setAuditStatus(processEvent.getStatus());

View File

@ -440,7 +440,7 @@ public class XzdSubcontractServiceImpl extends ServiceImpl<XzdSubcontractMapper,
log.info("分包合同信息审核任务执行了{}", processEvent.toString());
String id = processEvent.getBusinessId();
XzdSubcontract vo = baseMapper.selectById(Long.valueOf(id));
if (vo != null) {
if (vo == null) {
return;
}
vo.setAuditStatus(processEvent.getStatus());

View File

@ -210,7 +210,7 @@ public class XzdSubcontractTerminationServiceImpl extends ServiceImpl<XzdSubcont
log.info("分包合同终止审核任务执行了{}", processEvent.toString());
String id = processEvent.getBusinessId();
XzdSubcontractTermination vo = baseMapper.selectById(Long.valueOf(id));
if (vo != null) {
if (vo == null) {
return;
}
vo.setAuditStatus(processEvent.getStatus());

View File

@ -477,7 +477,7 @@ public class XzdPurchaseContractInformationServiceImpl extends ServiceImpl<XzdPu
log.info("采购合同信息审核任务执行了{}", processEvent.toString());
String id = processEvent.getBusinessId();
XzdPurchaseContractInformation vo = baseMapper.selectById(Long.valueOf(id));
if (vo != null) {
if (vo == null) {
return;
}
vo.setAuditStatus(processEvent.getStatus());

View File

@ -228,7 +228,7 @@ public class XzdGuaranteeChangeInfoServiceImpl extends ServiceImpl<XzdGuaranteeC
log.info("承包合同保函变更审核任务执行了{}", processEvent.toString());
String id = processEvent.getBusinessId();
XzdGuaranteeChangeInfo vo = baseMapper.selectById(Long.valueOf(id));
if (vo != null) {
if (vo == null) {
return;
}
vo.setAuditStatus(processEvent.getStatus());

View File

@ -264,7 +264,7 @@ public class XzdGuaranteeInfoServiceImpl extends ServiceImpl<XzdGuaranteeInfoMap
log.info("承包合同保函审核任务执行了{}", processEvent.toString());
String id = processEvent.getBusinessId();
XzdGuaranteeInfo vo = baseMapper.selectById(Long.valueOf(id));
if (vo != null) {
if (vo == null) {
return;
}
vo.setAuditStatus(processEvent.getStatus());

View File

@ -192,7 +192,7 @@ public class XzdDepositApplicationServiceImpl extends ServiceImpl<XzdDepositAppl
log.info("保证金缴纳审批审核任务执行了{}", processEvent.toString());
String id = processEvent.getBusinessId();
XzdDepositApplication vo = baseMapper.selectById(Long.valueOf(id));
if (vo != null) {
if (vo == null) {
return;
}
vo.setAuditStatus(processEvent.getStatus());

View File

@ -231,7 +231,7 @@ public class XzdFbhtzbjthServiceImpl extends ServiceImpl<XzdFbhtzbjthMapper, Xzd
log.info("分包合同质保金退还审核任务执行了{}", processEvent.toString());
String id = processEvent.getBusinessId();
XzdFbhtzbjth vo = baseMapper.selectById(Long.valueOf(id));
if (vo != null) {
if (vo == null) {
return;
}
vo.setAuditStatus(processEvent.getStatus());

View File

@ -276,7 +276,7 @@ public class AppreciationInvoiceServiceImpl extends ServiceImpl<AppreciationInvo
log.info("增值税发票审核任务执行了{}", processEvent.toString());
String id = processEvent.getBusinessId();
AppreciationInvoice vo = baseMapper.selectById(Long.valueOf(id));
if (vo != null) {
if (vo == null) {
return;
}
vo.setAuditStatus(processEvent.getStatus());

View File

@ -382,7 +382,7 @@ public class SettlementOfSubcontractingContractServiceImpl extends ServiceImpl<S
log.info("分包合同进度结算审核任务执行了{}", processEvent.toString());
String id = processEvent.getBusinessId();
SettlementOfSubcontractingContract vo = baseMapper.selectById(Long.valueOf(id));
if (vo != null) {
if (vo == null) {
return;
}
vo.setAuditStatus(processEvent.getStatus());

View File

@ -350,7 +350,7 @@ public class SettlementOfSubcontractingCompletionServiceImpl extends ServiceImpl
log.info("分包合同竣工结算审核任务执行了{}", processEvent.toString());
String id = processEvent.getBusinessId();
SettlementOfSubcontractingCompletion vo = baseMapper.selectById(Long.valueOf(id));
if (vo != null) {
if (vo == null) {
return;
}
vo.setAuditStatus(processEvent.getStatus());

View File

@ -276,7 +276,7 @@ public class SettlementOfSubcontractingAdjustmentServiceImpl extends ServiceImpl
log.info("分包合同竣工结算调整审核任务执行了{}", processEvent.toString());
String id = processEvent.getBusinessId();
SettlementOfSubcontractingAdjustment vo = baseMapper.selectById(Long.valueOf(id));
if (vo != null) {
if (vo == null) {
return;
}
vo.setAuditStatus(processEvent.getStatus());

View File

@ -329,7 +329,7 @@ public class FinancialRevenuePlanAlterationServiceImpl extends ServiceImpl<Finan
log.info("月度资金计划变更审核任务执行了{}", processEvent.toString());
String id = processEvent.getBusinessId();
FinancialRevenuePlanAlteration vo = baseMapper.selectById(Long.valueOf(id));
if (vo != null) {
if (vo == null) {
return;
}
vo.setAuditStatus(processEvent.getStatus());

View File

@ -336,7 +336,7 @@ public class FinancialRevenueExpenditurePlanServiceImpl extends ServiceImpl<Fina
log.info("月度资金计划审核任务执行了{}", processEvent.toString());
String id = processEvent.getBusinessId();
FinancialRevenueExpenditurePlan vo = baseMapper.selectById(Long.valueOf(id));
if (vo != null) {
if (vo == null) {
return;
}
vo.setAuditStatus(processEvent.getStatus());