|
|
@ -97,10 +97,10 @@ public class LoanHomeVisitInvestigateService { |
|
|
|
LoanHomeVisitInvestigatePageVo loanHomeVisitInvestigatePageVo = new LoanHomeVisitInvestigatePageVo(); |
|
|
|
loanHomeVisitInvestigatePageVo.setSid(record.getSid()); |
|
|
|
loanHomeVisitInvestigatePageVo.setContractId(record.getContractNo()); |
|
|
|
if (StringUtils.isNotBlank(record.getResHomeVisDate())){ |
|
|
|
if (StringUtils.isNotBlank(record.getResHomeVisDate())) { |
|
|
|
loanHomeVisitInvestigatePageVo.setNodeState("已预约"); |
|
|
|
loanHomeVisitInvestigatePageVo.setShowAppointmentBtn(false); |
|
|
|
}else { |
|
|
|
} else { |
|
|
|
loanHomeVisitInvestigatePageVo.setNodeState("未预约"); |
|
|
|
loanHomeVisitInvestigatePageVo.setShowAppointmentBtn(true); |
|
|
|
} |
|
|
@ -127,7 +127,7 @@ public class LoanHomeVisitInvestigateService { |
|
|
|
public ResultBean saveAppointmentInfo(AppLoanHomeVisitInvestigateReservationDto dto) { |
|
|
|
ResultBean rb = ResultBean.fireFail(); |
|
|
|
LoanHomeVisitInvestigateReservationDto loanHomeVisitInvestigateReservationDto = new LoanHomeVisitInvestigateReservationDto(); |
|
|
|
BeanUtil.copyProperties(dto,loanHomeVisitInvestigateReservationDto); |
|
|
|
BeanUtil.copyProperties(dto, loanHomeVisitInvestigateReservationDto); |
|
|
|
loanHomevisitInvestigateFeign.saveAppointmentInfo(loanHomeVisitInvestigateReservationDto); |
|
|
|
return rb.success(); |
|
|
|
} |
|
|
@ -135,7 +135,7 @@ public class LoanHomeVisitInvestigateService { |
|
|
|
public ResultBean saveReportInfo(String comment, Boolean agree, String sid) { |
|
|
|
ResultBean rb = ResultBean.fireFail(); |
|
|
|
ResultBean resultBean = loanHomevisitInvestigateFeign.saveReportInfo(comment, agree, sid); |
|
|
|
if (!resultBean.getSuccess()){ |
|
|
|
if (!resultBean.getSuccess()) { |
|
|
|
return rb.setMsg(resultBean.getMsg()); |
|
|
|
} |
|
|
|
return rb.success(); |
|
|
@ -146,31 +146,39 @@ public class LoanHomeVisitInvestigateService { |
|
|
|
LoanHomevisitInvestigateDetailsVo loanHomevisitInvestigateDetailsVo = loanHomevisitInvestigateFeign.fetchDetailsBySid(sid).getData(); |
|
|
|
LoanHomeVisitInvestigateNewDetailsVo loanHomeVisitInvestigateNewDetailsVo = loanHomevisitInvestigateFeign.details(sid).getData(); |
|
|
|
AppLoanHomeVisitInvestigateDetailsVo appLoanHomeVisitInvestigateDetailsVo = new AppLoanHomeVisitInvestigateDetailsVo(); |
|
|
|
BeanUtil.copyProperties(loanHomeVisitInvestigateNewDetailsVo,appLoanHomeVisitInvestigateDetailsVo); |
|
|
|
BeanUtil.copyProperties(loanHomeVisitInvestigateNewDetailsVo, appLoanHomeVisitInvestigateDetailsVo); |
|
|
|
List<AppFinanceForm> orderInfo = appLoanHomeVisitInvestigateDetailsVo.getOrderInfo(); |
|
|
|
for (AppFinanceForm appFinanceForm : orderInfo) { |
|
|
|
if ("车辆信息确认".equals(appFinanceForm.getValue())){ |
|
|
|
if ("车辆信息确认".equals(appFinanceForm.getValue())) { |
|
|
|
appFinanceForm.setJumpPage(true); |
|
|
|
CarModelVo orderPage1 = commonService.getOrder(loanHomevisitInvestigateDetailsVo.getSaleOrderSid()).getData(); |
|
|
|
AppLoanHomeVisitVo orderPage2 = new AppLoanHomeVisitVo(); |
|
|
|
BeanUtil.copyProperties(orderPage1,orderPage2); |
|
|
|
BeanUtil.copyProperties(orderPage1, orderPage2); |
|
|
|
appFinanceForm.setPluginPage(orderPage2); |
|
|
|
}else if ("金融方案信息确认".equals(appFinanceForm.getValue())){ |
|
|
|
} else if ("金融方案信息确认".equals(appFinanceForm.getValue())) { |
|
|
|
appFinanceForm.setJumpPage(true); |
|
|
|
CarModelVo finPage1 = commonService.getLoanSolution(loanHomevisitInvestigateDetailsVo.getSaleOrderSid()).getData(); |
|
|
|
AppLoanHomeVisitVo finPage2 = new AppLoanHomeVisitVo(); |
|
|
|
BeanUtil.copyProperties(finPage1,finPage2); |
|
|
|
BeanUtil.copyProperties(finPage1, finPage2); |
|
|
|
appFinanceForm.setPluginPage(finPage2); |
|
|
|
} |
|
|
|
} |
|
|
|
return rb.success().setData(appLoanHomeVisitInvestigateDetailsVo); |
|
|
|
} |
|
|
|
|
|
|
|
public ResultBean<AppLoanHomeVisitInvestigateInitZLVo> details2(String sid) { |
|
|
|
ResultBean rb = ResultBean.fireFail(); |
|
|
|
LoanHomeVisitInvestigateInitZLVo loanHomeVisitInvestigateInitZLVo = loanHomevisitInvestigateFeign.details2(sid).getData(); |
|
|
|
AppLoanHomeVisitInvestigateInitZLVo appLoanHomeVisitInvestigateInitZLVo = new AppLoanHomeVisitInvestigateInitZLVo(); |
|
|
|
BeanUtil.copyProperties(loanHomeVisitInvestigateInitZLVo, appLoanHomeVisitInvestigateInitZLVo); |
|
|
|
return rb.success().setData(appLoanHomeVisitInvestigateInitZLVo); |
|
|
|
} |
|
|
|
|
|
|
|
public ResultBean<AppLoanHomeVisitInvestigateInitReportStateVo> getHomeVisitReportInfo(String sid) { |
|
|
|
ResultBean rb = ResultBean.fireFail(); |
|
|
|
LoanHomeVisitInvestigateInitReportStateVo data = loanHomevisitInvestigateFeign.getHomeVisitReportInfo(sid).getData(); |
|
|
|
AppLoanHomeVisitInvestigateInitReportStateVo appLoanHomeVisitInvestigateInitReportStateVo = new AppLoanHomeVisitInvestigateInitReportStateVo(); |
|
|
|
BeanUtil.copyProperties(data,appLoanHomeVisitInvestigateInitReportStateVo); |
|
|
|
BeanUtil.copyProperties(data, appLoanHomeVisitInvestigateInitReportStateVo); |
|
|
|
return rb.success().setData(appLoanHomeVisitInvestigateInitReportStateVo); |
|
|
|
} |
|
|
|
|
|
|
@ -178,7 +186,7 @@ public class LoanHomeVisitInvestigateService { |
|
|
|
ResultBean rb = ResultBean.fireFail(); |
|
|
|
LoanHomeVisitInvestigateInitInformationStateVo data = loanHomevisitInvestigateFeign.getHomeVisitDataInfo(sid).getData(); |
|
|
|
AppLoanHomeVisitInvestigateInitInformationStateVo appLoanHomeVisitInvestigateInitInformationStateVo = new AppLoanHomeVisitInvestigateInitInformationStateVo(); |
|
|
|
BeanUtil.copyProperties(data,appLoanHomeVisitInvestigateInitInformationStateVo); |
|
|
|
BeanUtil.copyProperties(data, appLoanHomeVisitInvestigateInitInformationStateVo); |
|
|
|
return rb.success().setData(appLoanHomeVisitInvestigateInitInformationStateVo); |
|
|
|
} |
|
|
|
|
|
|
@ -186,14 +194,14 @@ public class LoanHomeVisitInvestigateService { |
|
|
|
ResultBean rb = ResultBean.fireFail(); |
|
|
|
LoanHomeVisitInvestigateInitCustomerVo data = loanHomevisitInvestigateFeign.getHomeVisitCustomerInfo(sid).getData(); |
|
|
|
AppLoanHomeVisitInvestigateInitCustomerVo appLoanHomeVisitInvestigateInitCustomerVo = new AppLoanHomeVisitInvestigateInitCustomerVo(); |
|
|
|
BeanUtil.copyProperties(data,appLoanHomeVisitInvestigateInitCustomerVo); |
|
|
|
BeanUtil.copyProperties(data, appLoanHomeVisitInvestigateInitCustomerVo); |
|
|
|
return rb.success().setData(appLoanHomeVisitInvestigateInitCustomerVo); |
|
|
|
} |
|
|
|
|
|
|
|
public ResultBean saveHomeVisitCustomerInfo(AppLoanHomeVisitInvestigateSaveCustomerDto dto) { |
|
|
|
ResultBean rb = ResultBean.fireFail(); |
|
|
|
LoanHomeVisitInvestigateSaveCustomerDto loanHomeVisitInvestigateSaveCustomerDto = new LoanHomeVisitInvestigateSaveCustomerDto(); |
|
|
|
BeanUtil.copyProperties(dto,loanHomeVisitInvestigateSaveCustomerDto); |
|
|
|
BeanUtil.copyProperties(dto, loanHomeVisitInvestigateSaveCustomerDto); |
|
|
|
loanHomevisitInvestigateFeign.saveHomeVisitCustomerInfo(loanHomeVisitInvestigateSaveCustomerDto); |
|
|
|
return rb.success(); |
|
|
|
} |
|
|
@ -202,13 +210,13 @@ public class LoanHomeVisitInvestigateService { |
|
|
|
ResultBean rb = ResultBean.fireFail(); |
|
|
|
LoanHomeVisitInvestigateInitOrderVo data = loanHomevisitInvestigateFeign.getHomeVisitOrderInfo(sid).getData(); |
|
|
|
AppLoanHomeVisitInvestigateInitOrderVo appLoanHomeVisitInvestigateInitOrderVo = new AppLoanHomeVisitInvestigateInitOrderVo(); |
|
|
|
BeanUtil.copyProperties(data,appLoanHomeVisitInvestigateInitOrderVo); |
|
|
|
BeanUtil.copyProperties(data, appLoanHomeVisitInvestigateInitOrderVo); |
|
|
|
CarModelVo finPage1 = commonService.getLoanSolution(data.getOrderSid()).getData(); |
|
|
|
AppLoanHomeVisitVo finPage2 = new AppLoanHomeVisitVo(); |
|
|
|
BeanUtil.copyProperties(finPage1,finPage2); |
|
|
|
BeanUtil.copyProperties(finPage1, finPage2); |
|
|
|
CarModelVo orderPage1 = commonService.getOrder(data.getOrderSid()).getData(); |
|
|
|
AppLoanHomeVisitVo orderPage2 = new AppLoanHomeVisitVo(); |
|
|
|
BeanUtil.copyProperties(orderPage1,orderPage2); |
|
|
|
BeanUtil.copyProperties(orderPage1, orderPage2); |
|
|
|
appLoanHomeVisitInvestigateInitOrderVo.setFinPage(finPage2); |
|
|
|
appLoanHomeVisitInvestigateInitOrderVo.setOrderPage(orderPage2); |
|
|
|
return rb.success().setData(appLoanHomeVisitInvestigateInitOrderVo); |
|
|
@ -217,7 +225,7 @@ public class LoanHomeVisitInvestigateService { |
|
|
|
public ResultBean saveHomeVisitOrderInfo(AppLoanHomeVisitInvestigateSaveOrderDto dto) { |
|
|
|
ResultBean rb = ResultBean.fireFail(); |
|
|
|
LoanHomeVisitInvestigateSaveOrderDto loanHomeVisitInvestigateInitOrderDto = new LoanHomeVisitInvestigateSaveOrderDto(); |
|
|
|
BeanUtil.copyProperties(dto,loanHomeVisitInvestigateInitOrderDto); |
|
|
|
BeanUtil.copyProperties(dto, loanHomeVisitInvestigateInitOrderDto); |
|
|
|
loanHomevisitInvestigateFeign.saveHomeVisitOrderInfo(loanHomeVisitInvestigateInitOrderDto); |
|
|
|
return rb.success(); |
|
|
|
} |
|
|
@ -226,14 +234,14 @@ public class LoanHomeVisitInvestigateService { |
|
|
|
ResultBean rb = ResultBean.fireFail(); |
|
|
|
LoanHomeVisitInvestigateInitOperVo data = loanHomevisitInvestigateFeign.getHomeVisitOperationInfo(sid).getData(); |
|
|
|
AppLoanHomeVisitInvestigateInitOperVo appLoanHomeVisitInvestigateInitOperVo = new AppLoanHomeVisitInvestigateInitOperVo(); |
|
|
|
BeanUtil.copyProperties(data,appLoanHomeVisitInvestigateInitOperVo); |
|
|
|
BeanUtil.copyProperties(data, appLoanHomeVisitInvestigateInitOperVo); |
|
|
|
return rb.success().setData(appLoanHomeVisitInvestigateInitOperVo); |
|
|
|
} |
|
|
|
|
|
|
|
public ResultBean saveHomeVisitOperationInfo(AppLoanHomeVisitInvestigateSaveOperDto dto) { |
|
|
|
ResultBean rb = ResultBean.fireFail(); |
|
|
|
LoanHomeVisitInvestigateSaveOperDto loanHomeVisitInvestigateInitOperDto = new LoanHomeVisitInvestigateSaveOperDto(); |
|
|
|
BeanUtil.copyProperties(dto,loanHomeVisitInvestigateInitOperDto); |
|
|
|
BeanUtil.copyProperties(dto, loanHomeVisitInvestigateInitOperDto); |
|
|
|
loanHomevisitInvestigateFeign.saveHomeVisitOperationInfo(loanHomeVisitInvestigateInitOperDto); |
|
|
|
return rb.success(); |
|
|
|
} |
|
|
@ -242,14 +250,14 @@ public class LoanHomeVisitInvestigateService { |
|
|
|
ResultBean rb = ResultBean.fireFail(); |
|
|
|
LoanHomeVisitInvestigateInitTranVo data = loanHomevisitInvestigateFeign.getHomeVisitTransportInfo(sid).getData(); |
|
|
|
AppLoanHomeVisitInvestigateInitTranVo appLoanHomeVisitInvestigateInitTranVo = new AppLoanHomeVisitInvestigateInitTranVo(); |
|
|
|
BeanUtil.copyProperties(data,appLoanHomeVisitInvestigateInitTranVo); |
|
|
|
BeanUtil.copyProperties(data, appLoanHomeVisitInvestigateInitTranVo); |
|
|
|
return rb.success().setData(appLoanHomeVisitInvestigateInitTranVo); |
|
|
|
} |
|
|
|
|
|
|
|
public ResultBean saveHomeVisitTransportInfo(AppLoanHomeVisitInvestigateSaveTranDto dto) { |
|
|
|
ResultBean rb = ResultBean.fireFail(); |
|
|
|
LoanHomeVisitInvestigateSaveTranDto loanHomeVisitInvestigateInitTranDto = new LoanHomeVisitInvestigateSaveTranDto(); |
|
|
|
BeanUtil.copyProperties(dto,loanHomeVisitInvestigateInitTranDto); |
|
|
|
BeanUtil.copyProperties(dto, loanHomeVisitInvestigateInitTranDto); |
|
|
|
loanHomevisitInvestigateFeign.saveHomeVisitTransportInfo(loanHomeVisitInvestigateInitTranDto); |
|
|
|
return rb.success(); |
|
|
|
} |
|
|
@ -258,14 +266,14 @@ public class LoanHomeVisitInvestigateService { |
|
|
|
ResultBean rb = ResultBean.fireFail(); |
|
|
|
LoanHomeVisitInvestigateInitPropVo data = loanHomevisitInvestigateFeign.getHomeVisitAssetsInfo(sid).getData(); |
|
|
|
AppLoanHomeVisitInvestigateInitPropVo appLoanHomeVisitInvestigateInitPropVo = new AppLoanHomeVisitInvestigateInitPropVo(); |
|
|
|
BeanUtil.copyProperties(data,appLoanHomeVisitInvestigateInitPropVo); |
|
|
|
BeanUtil.copyProperties(data, appLoanHomeVisitInvestigateInitPropVo); |
|
|
|
return rb.success().setData(appLoanHomeVisitInvestigateInitPropVo); |
|
|
|
} |
|
|
|
|
|
|
|
public ResultBean saveHomeVisitAssetsInfo(AppLoanHomeVisitInvestigateSavePropDto dto) { |
|
|
|
ResultBean rb = ResultBean.fireFail(); |
|
|
|
LoanHomeVisitInvestigateSavePropDto loanHomeVisitInvestigateInitPropDto = new LoanHomeVisitInvestigateSavePropDto(); |
|
|
|
BeanUtil.copyProperties(dto,loanHomeVisitInvestigateInitPropDto); |
|
|
|
BeanUtil.copyProperties(dto, loanHomeVisitInvestigateInitPropDto); |
|
|
|
loanHomevisitInvestigateFeign.saveHomeVisitAssetsInfo(loanHomeVisitInvestigateInitPropDto); |
|
|
|
return rb.success(); |
|
|
|
} |
|
|
@ -274,14 +282,14 @@ public class LoanHomeVisitInvestigateService { |
|
|
|
ResultBean rb = ResultBean.fireFail(); |
|
|
|
LoanHomeVisitInvestigateInitJFJZVo data = loanHomevisitInvestigateFeign.getHomeVisitWitnessInfo(sid).getData(); |
|
|
|
AppLoanHomeVisitInvestigateInitJFJZVo appLoanHomeVisitInvestigateInitJFJZVo = new AppLoanHomeVisitInvestigateInitJFJZVo(); |
|
|
|
BeanUtil.copyProperties(data,appLoanHomeVisitInvestigateInitJFJZVo); |
|
|
|
BeanUtil.copyProperties(data, appLoanHomeVisitInvestigateInitJFJZVo); |
|
|
|
return rb.success().setData(appLoanHomeVisitInvestigateInitJFJZVo); |
|
|
|
} |
|
|
|
|
|
|
|
public ResultBean saveHomeVisitWitnessInfo(AppLoanHomeVisitInvestigateSaveJFJZDto dto) { |
|
|
|
ResultBean rb = ResultBean.fireFail(); |
|
|
|
LoanHomeVisitInvestigateSaveJFJZDto loanHomeVisitInvestigateInitJFJZDto = new LoanHomeVisitInvestigateSaveJFJZDto(); |
|
|
|
BeanUtil.copyProperties(dto,loanHomeVisitInvestigateInitJFJZDto); |
|
|
|
BeanUtil.copyProperties(dto, loanHomeVisitInvestigateInitJFJZDto); |
|
|
|
loanHomevisitInvestigateFeign.saveHomeVisitWitnessInfo(loanHomeVisitInvestigateInitJFJZDto); |
|
|
|
return rb.success(); |
|
|
|
} |
|
|
@ -290,14 +298,14 @@ public class LoanHomeVisitInvestigateService { |
|
|
|
ResultBean rb = ResultBean.fireFail(); |
|
|
|
LoanHomeVisitInvestigateInitZMWJVo data = loanHomevisitInvestigateFeign.getHomeVisitProveFileInfo(sid).getData(); |
|
|
|
AppLoanHomeVisitInvestigateInitZMWJVo appLoanHomeVisitInvestigateInitZMWJVo = new AppLoanHomeVisitInvestigateInitZMWJVo(); |
|
|
|
BeanUtil.copyProperties(data,appLoanHomeVisitInvestigateInitZMWJVo); |
|
|
|
BeanUtil.copyProperties(data, appLoanHomeVisitInvestigateInitZMWJVo); |
|
|
|
return rb.success().setData(appLoanHomeVisitInvestigateInitZMWJVo); |
|
|
|
} |
|
|
|
|
|
|
|
public ResultBean saveHomeVisitProveFileInfo(AppLoanHomeVisitInvestigateSaveZMWJDto dto) { |
|
|
|
ResultBean rb = ResultBean.fireFail(); |
|
|
|
LoanHomeVisitInvestigateSaveZMWJDto loanHomeVisitInvestigateInitZMWJDto = new LoanHomeVisitInvestigateSaveZMWJDto(); |
|
|
|
BeanUtil.copyProperties(dto,loanHomeVisitInvestigateInitZMWJDto); |
|
|
|
BeanUtil.copyProperties(dto, loanHomeVisitInvestigateInitZMWJDto); |
|
|
|
loanHomevisitInvestigateFeign.saveHomeVisitProveFileInfo(loanHomeVisitInvestigateInitZMWJDto); |
|
|
|
return rb.success(); |
|
|
|
} |
|
|
@ -306,7 +314,7 @@ public class LoanHomeVisitInvestigateService { |
|
|
|
ResultBean rb = ResultBean.fireFail(); |
|
|
|
LoanHomeVisitInvestigateInitZCLVo data = loanHomevisitInvestigateFeign.getAssetCertificateInfo(sid).getData(); |
|
|
|
AppLoanHomeVisitInvestigateInitZCLVo appLoanHomeVisitInvestigateInitZCLVo = new AppLoanHomeVisitInvestigateInitZCLVo(); |
|
|
|
BeanUtil.copyProperties(data,appLoanHomeVisitInvestigateInitZCLVo); |
|
|
|
BeanUtil.copyProperties(data, appLoanHomeVisitInvestigateInitZCLVo); |
|
|
|
appLoanHomeVisitInvestigateInitZCLVo.setBankCardProperty(data.getYhkImages()); |
|
|
|
return rb.success().setData(appLoanHomeVisitInvestigateInitZCLVo); |
|
|
|
} |
|
|
@ -314,7 +322,7 @@ public class LoanHomeVisitInvestigateService { |
|
|
|
public ResultBean saveAssetCertificateInfo(AppLoanHomeVisitInvestigateSaveZCLDto dto) { |
|
|
|
ResultBean rb = ResultBean.fireFail(); |
|
|
|
LoanHomeVisitInvestigateSaveZCLDto loanHomeVisitInvestigateInitZCLDto = new LoanHomeVisitInvestigateSaveZCLDto(); |
|
|
|
BeanUtil.copyProperties(dto,loanHomeVisitInvestigateInitZCLDto); |
|
|
|
BeanUtil.copyProperties(dto, loanHomeVisitInvestigateInitZCLDto); |
|
|
|
loanHomeVisitInvestigateInitZCLDto.setYhkImages(dto.getBankCardProperty()); |
|
|
|
loanHomevisitInvestigateFeign.saveAssetCertificateInfo(loanHomeVisitInvestigateInitZCLDto); |
|
|
|
return rb.success(); |
|
|
@ -337,9 +345,9 @@ public class LoanHomeVisitInvestigateService { |
|
|
|
LoanHomeVisitInvestigatePageVo loanHomeVisitInvestigatePageVo = new LoanHomeVisitInvestigatePageVo(); |
|
|
|
loanHomeVisitInvestigatePageVo.setSid(record.getSid()); |
|
|
|
loanHomeVisitInvestigatePageVo.setContractId(record.getContractNo()); |
|
|
|
if (StringUtils.isNotBlank(record.getResHomeVisDate())){ |
|
|
|
if (StringUtils.isNotBlank(record.getResHomeVisDate())) { |
|
|
|
loanHomeVisitInvestigatePageVo.setNodeState("已预约"); |
|
|
|
}else { |
|
|
|
} else { |
|
|
|
loanHomeVisitInvestigatePageVo.setNodeState("未预约"); |
|
|
|
loanHomeVisitInvestigatePageVo.setShowAppointmentBtn(true); |
|
|
|
} |
|
|
@ -352,7 +360,7 @@ public class LoanHomeVisitInvestigateService { |
|
|
|
if (record.getState().equals("1")) { |
|
|
|
loanHomeVisitInvestigatePageVo.setShowHandleBtn(true); |
|
|
|
} |
|
|
|
if (record.getState().equals("2") && record.getInvestigateValue().equals("不通过")){ |
|
|
|
if (record.getState().equals("2") && record.getInvestigateValue().equals("不通过")) { |
|
|
|
loanHomeVisitInvestigatePageVo.setShowAppealBtn(true); |
|
|
|
} |
|
|
|
loanHomeVisitInvestigatePageVos.add(loanHomeVisitInvestigatePageVo); |
|
|
@ -364,7 +372,7 @@ public class LoanHomeVisitInvestigateService { |
|
|
|
public ResultBean submitCreditInfo(SubmitHomeAppealApplyDto dto) { |
|
|
|
ResultBean rb = ResultBean.fireFail(); |
|
|
|
SubmitHomeAppealDto submitHomeAppealDto = new SubmitHomeAppealDto(); |
|
|
|
BeanUtil.copyProperties(dto,submitHomeAppealDto); |
|
|
|
BeanUtil.copyProperties(dto, submitHomeAppealDto); |
|
|
|
ResultBean resultBean = loanHomevisitAppealFeign.submitHomeAppeal(submitHomeAppealDto); |
|
|
|
if (!resultBean.getSuccess()) { |
|
|
|
return rb.setMsg(resultBean.getMsg()); |
|
|
|