|
|
@@ -109,11 +109,13 @@ public class MallYeePayProductController {
|
|
|
.eq(ProductFee::getMerchantNo, productFee.getMerchantNo())
|
|
|
.eq(ProductFee::getApplicationNo, productFee.getApplicationNo()));
|
|
|
if(oldProductFee!=null){
|
|
|
+ log.error("旧数据:{}",oldProductFee);
|
|
|
oldProductFee.setRequestNo(productFee.getApplicationStatus());
|
|
|
oldProductFee.setAgreementSignUrl(productFee.getAgreementSignUrl());
|
|
|
oldProductFee.setAuditOpinion(productFee.getAuditOpinion());
|
|
|
oldProductFee.setProgressDescription(productFee.getProgressDescription());
|
|
|
- productFeeService.updateById(oldProductFee);
|
|
|
+ productFeeService.update(oldProductFee,Wrappers.<ProductFee>lambdaQuery()
|
|
|
+ .eq(ProductFee::getId,oldProductFee.getId()));
|
|
|
}
|
|
|
}
|
|
|
|