|
|
|
@ -9,9 +9,6 @@ import com.daqing.financial.guarantee.mapper.DgLoanNoticeMapper; |
|
|
|
|
import com.daqing.financial.guarantee.mapper.DgPaymentConfirmationConsiderMapper; |
|
|
|
|
import com.daqing.financial.guarantee.model.request.PaymentConfirmationQueryRequest; |
|
|
|
|
import com.daqing.financial.guarantee.model.request.PaymentConfirmationUpdateRequest; |
|
|
|
|
import com.daqing.financial.guarantee.model.response.BusinessApplicationListResponse; |
|
|
|
|
import com.daqing.financial.guarantee.model.response.GuaranteeLetterListResponse; |
|
|
|
|
import com.daqing.financial.guarantee.model.response.LoanNoticeListResponse; |
|
|
|
|
import com.daqing.financial.guarantee.model.response.PaymentConfirmationListResponse; |
|
|
|
|
import com.daqing.financial.guarantee.service.IDgPaymentConfirmationConsiderService; |
|
|
|
|
import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl; |
|
|
|
@ -24,7 +21,6 @@ import com.daqing.framework.model.response.PromptSuccess; |
|
|
|
|
import com.daqing.framework.util.RedisUtil; |
|
|
|
|
import com.daqing.framework.utils.PageUtils; |
|
|
|
|
import com.daqing.framework.utils.excel.EasyExcelUtil; |
|
|
|
|
import com.daqing.framework.utils.excel.ExcelUtil; |
|
|
|
|
import lombok.extern.slf4j.Slf4j; |
|
|
|
|
import org.springframework.beans.factory.annotation.Autowired; |
|
|
|
|
import org.springframework.stereotype.Service; |
|
|
|
@ -213,6 +209,7 @@ public class DgPaymentConfirmationConsiderServiceImpl extends ServiceImpl<DgPaym |
|
|
|
|
DgGuaranteeLetterAssignUser dgGuaranteeLetterAssignUser = guaranteeLetterAssignUserMapper.selectOne(guaranteeLetterAssignUserQueryWrapper); |
|
|
|
|
dgGuaranteeLetterAssignUser.setStatus(StatusCode.SP_REJECT); |
|
|
|
|
dgGuaranteeLetterAssignUser.setOperatingStatus(StatusCode.CZ_ON_HAND); |
|
|
|
|
dgGuaranteeLetterAssignUser.setAuditOpinion(""); |
|
|
|
|
int updateById = guaranteeLetterAssignUserMapper.updateById(dgGuaranteeLetterAssignUser); |
|
|
|
|
//更新成功,返回操作结果
|
|
|
|
|
log.info(updateById > 0 ? "驳回更新资产部经理成功" : "驳回更新资产部经理失败"); |
|
|
|
@ -307,6 +304,7 @@ public class DgPaymentConfirmationConsiderServiceImpl extends ServiceImpl<DgPaym |
|
|
|
|
DgPaymentConfirmationConsider paymentConfirmationConsiderT = baseMapper.selectOne(queryWrapperT); |
|
|
|
|
paymentConfirmationConsiderT.setOperatingStatus(StatusCode.CZ_ON_HAND); |
|
|
|
|
paymentConfirmationConsiderT.setStatus(StatusCode.SP_REJECT); |
|
|
|
|
paymentConfirmationConsiderT.setAuditOpinion(""); |
|
|
|
|
int updateById = baseMapper.updateById(paymentConfirmationConsiderT); |
|
|
|
|
//更新成功,返回操作结果
|
|
|
|
|
log.info(updateById > 0 ? "驳回更新资产部经理成功" : "驳回更新资产部经理失败"); |
|
|
|
|