Compare commits

..

No commits in common. "0b6fdc11595b7e5b6b7544acd154d3e6b140ea05" and "f9f0f3534ffc3508dc8b87bbbfd2bc85b855366e" have entirely different histories.

View File

@ -208,7 +208,7 @@ public class MpsMarketServiceImpl implements IMpsMarketService {
LambdaQueryWrapper<MpsBatch> batchQueryWrapper = Wrappers.lambdaQuery(); LambdaQueryWrapper<MpsBatch> batchQueryWrapper = Wrappers.lambdaQuery();
batchQueryWrapper.eq(MpsBatch::getBatchCode, "formal") batchQueryWrapper.eq(MpsBatch::getBatchCode, "formal")
.eq(MpsBatch::getBatchMonth, lastMonth) .eq(MpsBatch::getBatchMonth, lastMonth)
.eq(MpsBatch::getPreBatchStatus, 1) .eq(MpsBatch::getAfterBatchStatus, 1)
.eq(MpsBatch::getCheckStatus, 0); .eq(MpsBatch::getCheckStatus, 0);
// 这里需要注入MpsBatchMapper来查询MpsBatch表 // 这里需要注入MpsBatchMapper来查询MpsBatch表