|
|
@ -61,7 +61,7 @@ import java.util.UUID; |
|
|
|
*/ |
|
|
|
@Service |
|
|
|
public class LoanSolutionService extends MybatisBaseService<LoanSolutionMapper, LoanSolution> { |
|
|
|
@Autowired |
|
|
|
/* @Autowired |
|
|
|
private LoanSolutionsService loanSolutionsService; |
|
|
|
@Autowired |
|
|
|
private LoanSolutionTopService loanSolutionTopService; |
|
|
@ -71,8 +71,8 @@ public class LoanSolutionService extends MybatisBaseService<LoanSolutionMapper, |
|
|
|
private LoanSolutionTrailerService loanSolutionTrailerService; |
|
|
|
@Autowired |
|
|
|
private LoanSolutionsTrailerService loanSolutionsTrailerService; |
|
|
|
/* @Autowired |
|
|
|
private BusOrderFeign busOrderFeign;*/ |
|
|
|
*//* @Autowired
|
|
|
|
private BusOrderFeign busOrderFeign;*//*
|
|
|
|
@Autowired |
|
|
|
private LoanSolutionInciexplainService loanSolutionInciexplainService; |
|
|
|
@Autowired |
|
|
@ -81,8 +81,8 @@ public class LoanSolutionService extends MybatisBaseService<LoanSolutionMapper, |
|
|
|
private LoanSolutionDetailService loanSolutionDetailService; |
|
|
|
@Autowired |
|
|
|
private LoanSolutionsDetailService loanSolutionsDetailService; |
|
|
|
/* @Autowired |
|
|
|
private BusOrderModelFeign busOrderModelFeign;*/ |
|
|
|
*//* @Autowired
|
|
|
|
private BusOrderModelFeign busOrderModelFeign;*//*
|
|
|
|
@Autowired |
|
|
|
private LoanLoadpriceService loanLoadpriceService; |
|
|
|
|
|
|
@ -119,7 +119,7 @@ public class LoanSolutionService extends MybatisBaseService<LoanSolutionMapper, |
|
|
|
if(StringUtils.isNotBlank(loanPriceSid)){ |
|
|
|
LoanLoadprice loanLoadprice = loanLoadpriceService.fetchBySid(loanPriceSid); |
|
|
|
orderSid= loanLoadprice.getOrderSid(); |
|
|
|
/* appModelInSolutionVoResultBean=busOrderModelFeign.getAppModelInSolutionVoByOrderSid(orderSid);*/ |
|
|
|
*//* appModelInSolutionVoResultBean=busOrderModelFeign.getAppModelInSolutionVoByOrderSid(orderSid);*//*
|
|
|
|
if(appModelInSolutionVoResultBean.getSuccess()){ |
|
|
|
String quantity= appModelInSolutionVoResultBean.getData().getQuantity(); |
|
|
|
num=Integer.parseInt(quantity); |
|
|
@ -299,22 +299,22 @@ public class LoanSolutionService extends MybatisBaseService<LoanSolutionMapper, |
|
|
|
return vo; |
|
|
|
} |
|
|
|
|
|
|
|
/** |
|
|
|
*//**
|
|
|
|
* @param projectSid 项目sid |
|
|
|
* @description: 根据项目sid查询项目金融方案 |
|
|
|
* @return: |
|
|
|
* @Author: dimengzhe |
|
|
|
* @Date: 2021/10/28 10:14 |
|
|
|
*/ |
|
|
|
*//*
|
|
|
|
public LoanSolution selectByLoanPriceSid(String projectSid) { |
|
|
|
return baseMapper.selectByLoanPriceSid(projectSid); |
|
|
|
} |
|
|
|
|
|
|
|
/** |
|
|
|
*//**
|
|
|
|
* 手机端获取消贷业务金融方案已完善、未完善页面 |
|
|
|
* @param orderSid |
|
|
|
* @return |
|
|
|
*/ |
|
|
|
*//*
|
|
|
|
public AppLoanSolutionMainTainVo getAppLoanSolutionMainTainByOrderSid(String orderSid) { |
|
|
|
AppLoanSolutionMainTainVo vo = new AppLoanSolutionMainTainVo(); |
|
|
|
// 贷款人信息
|
|
|
@ -335,10 +335,10 @@ public class LoanSolutionService extends MybatisBaseService<LoanSolutionMapper, |
|
|
|
vo.setFinanceState(1); |
|
|
|
} |
|
|
|
// 主车价款信息
|
|
|
|
/* ResultBean<AppModelInSolutionVo> resultBean = busOrderModelFeign.getAppModelInSolutionVoByOrderSid(orderSid); |
|
|
|
*//* ResultBean<AppModelInSolutionVo> resultBean = busOrderModelFeign.getAppModelInSolutionVoByOrderSid(orderSid);
|
|
|
|
if (resultBean.getSuccess() && resultBean.getData() != null) { |
|
|
|
vo.setMainVehicleState(1); |
|
|
|
}*/ |
|
|
|
}*//*
|
|
|
|
|
|
|
|
// 是否展示挂车价款信息
|
|
|
|
if (financeProjectVo != null && financeProjectVo.getPackingProject().contains("挂车")) { |
|
|
@ -398,11 +398,11 @@ public class LoanSolutionService extends MybatisBaseService<LoanSolutionMapper, |
|
|
|
return vo; |
|
|
|
} |
|
|
|
|
|
|
|
/** |
|
|
|
*//**
|
|
|
|
* 手机端根据销售订单sid获取融资项目 |
|
|
|
* @param orderSid |
|
|
|
* @return |
|
|
|
*/ |
|
|
|
*//*
|
|
|
|
public AppFinanceProjectVo getAppFinanceProjectByOrderSid(String orderSid) { |
|
|
|
String bjdSid = loanLoadpriceService.selectByOrderSid(orderSid).getSid(); |
|
|
|
AppFinanceProjectVo vo = baseMapper.getAppFinanceProjectByBjdSid(bjdSid); |
|
|
@ -422,12 +422,12 @@ public class LoanSolutionService extends MybatisBaseService<LoanSolutionMapper, |
|
|
|
return vo; |
|
|
|
} |
|
|
|
|
|
|
|
/** |
|
|
|
*//**
|
|
|
|
* 手机端保存/修改融资项目 |
|
|
|
* 注:保存金融方案时保存消贷业务报价单 |
|
|
|
* @param dto |
|
|
|
* @return |
|
|
|
*/ |
|
|
|
*//*
|
|
|
|
@Transactional |
|
|
|
public ResultBean saveOrUpdateAppFinanceProject(AppFinanceProjectDto dto) { |
|
|
|
LoanLoadpriceVo loanLoadpriceVo = loanLoadpriceService.selectByOrderSid(dto.getOrderSid()); |
|
|
@ -444,7 +444,7 @@ public class LoanSolutionService extends MybatisBaseService<LoanSolutionMapper, |
|
|
|
LoanSolutions loanSolutions = new LoanSolutions(); |
|
|
|
dto.fillEntity(loanSolutions); |
|
|
|
loanSolutions.setSid(UUID.randomUUID().toString()); |
|
|
|
/* BigDecimal num = busOrderModelFeign.getModelQuantityByOrderSid(dto.getOrderSid()).getData(); |
|
|
|
*//* BigDecimal num = busOrderModelFeign.getModelQuantityByOrderSid(dto.getOrderSid()).getData();
|
|
|
|
loanSolutions.setMainVehicleAmount(loanSolutions.getMainVehicleAmount().multiply(num)); |
|
|
|
BigDecimal trailerAmount = StringUtils.toBigDecimal(dto.getTrailerAmount()); |
|
|
|
loanSolutions.setTrailerAmount(trailerAmount == null ? null : trailerAmount.multiply(num)); |
|
|
@ -459,7 +459,7 @@ public class LoanSolutionService extends MybatisBaseService<LoanSolutionMapper, |
|
|
|
BigDecimal financingAmount = StringUtils.toBigDecimal(dto.getFinancingAmount()); |
|
|
|
loanSolutions.setFinancingAmount(financingAmount == null ? null : financingAmount.multiply(num)); |
|
|
|
BigDecimal otherAmount = StringUtils.toBigDecimal(dto.getOtherAmount()); |
|
|
|
loanSolutions.setOtherAmount(otherAmount == null ? null : otherAmount.multiply(num));*/ |
|
|
|
loanSolutions.setOtherAmount(otherAmount == null ? null : otherAmount.multiply(num));*//*
|
|
|
|
boolean saveBoolean = loanSolutionsService.save(loanSolutions); |
|
|
|
if (saveBoolean) { |
|
|
|
return new ResultBean().success().setMsg("保存成功").setData(loanSolution.getSid()); |
|
|
@ -473,7 +473,7 @@ public class LoanSolutionService extends MybatisBaseService<LoanSolutionMapper, |
|
|
|
mapSum.put("packingProjectKey", dto.getPackingProjectKey()); |
|
|
|
map.put("packingProject", dto.getPackingProject()); |
|
|
|
mapSum.put("packingProject", dto.getPackingProject()); |
|
|
|
/* BigDecimal num = busOrderModelFeign.getModelQuantityByOrderSid(dto.getOrderSid()).getData(); |
|
|
|
*//* BigDecimal num = busOrderModelFeign.getModelQuantityByOrderSid(dto.getOrderSid()).getData();
|
|
|
|
map.put("mainVehicleAmount", StringUtils.toBigDecimal(dto.getMainVehicleAmount())); |
|
|
|
mapSum.put("mainVehicleAmount", StringUtils.toBigDecimal(dto.getMainVehicleAmount())); |
|
|
|
BigDecimal trailerAmount = StringUtils.toBigDecimal(dto.getTrailerAmount()); |
|
|
@ -498,7 +498,7 @@ public class LoanSolutionService extends MybatisBaseService<LoanSolutionMapper, |
|
|
|
mapSum.put("financingAmount", StringUtils.toBigDecimal(dto.getFinancingAmount()).multiply(num)); |
|
|
|
map.put("financingRemarks", dto.getFinancingRemarks()); |
|
|
|
mapSum.put("financingRemarks", dto.getFinancingRemarks()); |
|
|
|
map.put("sid", loanSolution.getSid());*/ |
|
|
|
map.put("sid", loanSolution.getSid());*//*
|
|
|
|
baseMapper.updateAppFinanceProject(map); |
|
|
|
// 总表
|
|
|
|
LoanSolutions loanSolutions = loanSolutionsService.selectByLoanPriceSid(dto.getLoanPriceSid()); |
|
|
@ -513,11 +513,11 @@ public class LoanSolutionService extends MybatisBaseService<LoanSolutionMapper, |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
/** |
|
|
|
*//**
|
|
|
|
* 手机端根据销售订单sid获取垫款金额 |
|
|
|
* @param orderSid |
|
|
|
* @return |
|
|
|
*/ |
|
|
|
*//*
|
|
|
|
public AppAdvanceVo getAppAdvanceVoByOrderSid(String orderSid) { |
|
|
|
String bjdSid = loanLoadpriceService.selectByOrderSid(orderSid).getSid(); |
|
|
|
AppAdvanceVo vo = baseMapper.getAppAdvanceVoByBjdSid(bjdSid); |
|
|
@ -528,25 +528,25 @@ public class LoanSolutionService extends MybatisBaseService<LoanSolutionMapper, |
|
|
|
return vo; |
|
|
|
} |
|
|
|
|
|
|
|
/** |
|
|
|
*//**
|
|
|
|
* 手机端保存/修改垫款金额 |
|
|
|
* @param dto |
|
|
|
* @return |
|
|
|
*/ |
|
|
|
*//*
|
|
|
|
@Transactional |
|
|
|
public ResultBean saveOrUpdateAppAdvanceDto(AppAdvanceDto dto) { |
|
|
|
LoanLoadpriceVo loanLoadpriceVo = loanLoadpriceService.selectByOrderSid(dto.getOrderSid()); |
|
|
|
LoanSolution loanSolution = baseMapper.selectByLoanPriceSid(loanLoadpriceVo.getSid()); |
|
|
|
Map<String, Object> map = new HashMap<>(); |
|
|
|
Map<String, Object> mapSum = new HashMap<>(); |
|
|
|
/* BigDecimal num = busOrderModelFeign.getModelQuantityByOrderSid(dto.getOrderSid()).getData(); |
|
|
|
*//* BigDecimal num = busOrderModelFeign.getModelQuantityByOrderSid(dto.getOrderSid()).getData();
|
|
|
|
BigDecimal trailerAdvance = StringUtils.toBigDecimal(dto.getTrailerAdvance()); |
|
|
|
map.put("trailerAdvance", trailerAdvance); |
|
|
|
mapSum.put("trailerAdvance", trailerAdvance == null ? null : trailerAdvance.multiply(num)); |
|
|
|
BigDecimal topcoatAdvance = StringUtils.toBigDecimal(dto.getTopcoatAdvance()); |
|
|
|
map.put("topcoatAdvance", topcoatAdvance); |
|
|
|
mapSum.put("topcoatAdvance", topcoatAdvance == null ? null : topcoatAdvance.multiply(num)); |
|
|
|
map.put("sid", loanSolution.getSid());*/ |
|
|
|
map.put("sid", loanSolution.getSid());*//*
|
|
|
|
baseMapper.updateAppAdvance(map); |
|
|
|
// 总表
|
|
|
|
LoanSolutions loanSolutions = loanSolutionsService.selectByLoanPriceSid(loanLoadpriceVo.getSid()); |
|
|
@ -559,11 +559,11 @@ public class LoanSolutionService extends MybatisBaseService<LoanSolutionMapper, |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
/** |
|
|
|
*//**
|
|
|
|
* 手机端根据销售订单sid获取资方金融政策 |
|
|
|
* @param orderSid |
|
|
|
* @return |
|
|
|
*/ |
|
|
|
*//*
|
|
|
|
public AppFinBackVo getAppFinBackVoByOrderSid(String orderSid) { |
|
|
|
String bjdSid = loanLoadpriceService.selectByOrderSid(orderSid).getSid(); |
|
|
|
AppFinBackVo vo = baseMapper.getAppFinBackVoByBjdSid(bjdSid); |
|
|
@ -578,19 +578,19 @@ public class LoanSolutionService extends MybatisBaseService<LoanSolutionMapper, |
|
|
|
return vo; |
|
|
|
} |
|
|
|
|
|
|
|
/** |
|
|
|
*//**
|
|
|
|
* 手机端保存/修改资方金融政策 |
|
|
|
* @param dto |
|
|
|
* @return |
|
|
|
*/ |
|
|
|
*//*
|
|
|
|
@Transactional |
|
|
|
public ResultBean saveOrUpdateAppFinBack(AppFinBackDto dto) { |
|
|
|
LoanLoadpriceVo loanLoadpriceVo = loanLoadpriceService.selectByOrderSid(dto.getOrderSid()); |
|
|
|
LoanSolution loanSolution = baseMapper.selectByLoanPriceSid(loanLoadpriceVo.getSid()); |
|
|
|
/*BigDecimal num = busOrderModelFeign.getModelQuantityByOrderSid(dto.getOrderSid()).getData();*/ |
|
|
|
*//*BigDecimal num = busOrderModelFeign.getModelQuantityByOrderSid(dto.getOrderSid()).getData();*//*
|
|
|
|
Map<String, Object> map = new HashMap<>(); |
|
|
|
Map<String, Object> mapSum = new HashMap<>(); |
|
|
|
/* |
|
|
|
*//*
|
|
|
|
map.put("bankAccess", dto.getBankAccess()); |
|
|
|
mapSum.put("bankAccess", dto.getBankAccess()); |
|
|
|
map.put("productPolicy", dto.getProductPolicy()); |
|
|
@ -633,7 +633,7 @@ public class LoanSolutionService extends MybatisBaseService<LoanSolutionMapper, |
|
|
|
mapSum.put("loanInterest", dto.getLoanInterest()); |
|
|
|
map.put("solutionsRemarks", dto.getSolutionsRemarks()); |
|
|
|
mapSum.put("solutionsRemarks", dto.getSolutionsRemarks()); |
|
|
|
map.put("sid", loanSolution.getSid());*/ |
|
|
|
map.put("sid", loanSolution.getSid());*//*
|
|
|
|
baseMapper.updateAppFinBack(map); |
|
|
|
// 总表
|
|
|
|
LoanSolutions loanSolutions = loanSolutionsService.selectByLoanPriceSid(loanLoadpriceVo.getSid()); |
|
|
@ -647,11 +647,11 @@ public class LoanSolutionService extends MybatisBaseService<LoanSolutionMapper, |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
/** |
|
|
|
*//**
|
|
|
|
* 手机端根据销售订单sid获取首付融 |
|
|
|
* @param orderSid |
|
|
|
* @return |
|
|
|
*/ |
|
|
|
*//*
|
|
|
|
public AppDownPayVo getAppAppDownPayByOrderSid(String orderSid) { |
|
|
|
String bjdSid = loanLoadpriceService.selectByOrderSid(orderSid).getSid(); |
|
|
|
AppDownPayVo vo = baseMapper.getAppAppDownPayByBjdSid(bjdSid); |
|
|
@ -662,17 +662,17 @@ public class LoanSolutionService extends MybatisBaseService<LoanSolutionMapper, |
|
|
|
return vo; |
|
|
|
} |
|
|
|
|
|
|
|
/** |
|
|
|
*//**
|
|
|
|
* 手机端保存/修改首付融 |
|
|
|
* @param dto |
|
|
|
* @return |
|
|
|
*/ |
|
|
|
*//*
|
|
|
|
public ResultBean saveOrUpdateAppAppDownPay(AppDownPayDto dto) { |
|
|
|
LoanLoadpriceVo loanLoadpriceVo = loanLoadpriceService.selectByOrderSid(dto.getOrderSid()); |
|
|
|
LoanSolution loanSolution = baseMapper.selectByLoanPriceSid(loanLoadpriceVo.getSid()); |
|
|
|
Map<String, Object> map = new HashMap<>(); |
|
|
|
Map<String, Object> mapSum = new HashMap<>(); |
|
|
|
/* BigDecimal num = busOrderModelFeign.getModelQuantityByOrderSid(dto.getOrderSid()).getData(); |
|
|
|
*//* BigDecimal num = busOrderModelFeign.getModelQuantityByOrderSid(dto.getOrderSid()).getData();
|
|
|
|
BigDecimal downPay = StringUtils.toBigDecimal(dto.getDownPay()); |
|
|
|
map.put("downPay", downPay); |
|
|
|
mapSum.put("downPay", downPay == null ? null : downPay.multiply(num)); |
|
|
@ -687,7 +687,7 @@ public class LoanSolutionService extends MybatisBaseService<LoanSolutionMapper, |
|
|
|
mapSum.put("downPayFinancier", dto.getDownPayFinancier()); |
|
|
|
map.put("downPayRemarks", dto.getDownPayRemarks()); |
|
|
|
mapSum.put("downPayRemarks", dto.getDownPayRemarks()); |
|
|
|
map.put("sid", loanSolution.getSid());*/ |
|
|
|
map.put("sid", loanSolution.getSid());*//*
|
|
|
|
baseMapper.updateAppDownPay(map); |
|
|
|
// 总表
|
|
|
|
LoanSolutions loanSolutionsVo = loanSolutionsService.selectByLoanPriceSid(loanLoadpriceVo.getSid()); |
|
|
@ -700,11 +700,11 @@ public class LoanSolutionService extends MybatisBaseService<LoanSolutionMapper, |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
/** |
|
|
|
*//**
|
|
|
|
* 手机端根据销售订单sid获取公司首付款垫款 |
|
|
|
* @param orderSid |
|
|
|
* @return |
|
|
|
*/ |
|
|
|
*//*
|
|
|
|
public AppCorpAdvanceVo getAppCorpAdvanceByOrderSid(String orderSid) { |
|
|
|
String bjdSid = loanLoadpriceService.selectByOrderSid(orderSid).getSid(); |
|
|
|
AppCorpAdvanceVo vo = baseMapper.getAppCorpAdvanceByBjdSid(bjdSid); |
|
|
@ -715,18 +715,18 @@ public class LoanSolutionService extends MybatisBaseService<LoanSolutionMapper, |
|
|
|
return vo; |
|
|
|
} |
|
|
|
|
|
|
|
/** |
|
|
|
*//**
|
|
|
|
* 手机端修改首付款垫款 |
|
|
|
* @param dto |
|
|
|
* @return |
|
|
|
*/ |
|
|
|
*//*
|
|
|
|
@Transactional |
|
|
|
public ResultBean saveOrUpdateAppCorpAdvance(AppCorpAdvanceDto dto) { |
|
|
|
LoanLoadpriceVo loanLoadpriceVo = loanLoadpriceService.selectByOrderSid(dto.getOrderSid()); |
|
|
|
LoanSolution loanSolution = baseMapper.selectByLoanPriceSid(loanLoadpriceVo.getSid()); |
|
|
|
Map<String, Object> map = new HashMap<>(); |
|
|
|
Map<String, Object> mapSum = new HashMap<>(); |
|
|
|
/* BigDecimal num = busOrderModelFeign.getModelQuantityByOrderSid(dto.getOrderSid()).getData(); |
|
|
|
*//* BigDecimal num = busOrderModelFeign.getModelQuantityByOrderSid(dto.getOrderSid()).getData();
|
|
|
|
BigDecimal advanceAmount = StringUtils.toBigDecimal(dto.getAdvanceAmount()); |
|
|
|
map.put("advanceAmount", advanceAmount); |
|
|
|
mapSum.put("advanceAmount", advanceAmount == null ? null : advanceAmount.multiply(num)); |
|
|
@ -740,7 +740,7 @@ public class LoanSolutionService extends MybatisBaseService<LoanSolutionMapper, |
|
|
|
mapSum.put("c_repayMoney", c_repayMoney == null ? null : c_repayMoney.multiply(num)); |
|
|
|
map.put("c_repayRemarks", dto.getC_repayRemarks()); |
|
|
|
mapSum.put("c_repayRemarks", dto.getC_repayRemarks()); |
|
|
|
map.put("sid", loanSolution.getSid());*/ |
|
|
|
map.put("sid", loanSolution.getSid());*//*
|
|
|
|
baseMapper.updateAppCorpAdvance(map); |
|
|
|
// 总表
|
|
|
|
LoanSolutions loanSolutionsVo = loanSolutionsService.selectByLoanPriceSid(loanLoadpriceVo.getSid()); |
|
|
@ -753,11 +753,11 @@ public class LoanSolutionService extends MybatisBaseService<LoanSolutionMapper, |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
/** |
|
|
|
*//**
|
|
|
|
* 手机端根据销售订单sid获取还款情况 |
|
|
|
* @param orderSid |
|
|
|
* @return |
|
|
|
*/ |
|
|
|
*//*
|
|
|
|
public AppRePayVo getAppRePayByOrderSid(String orderSid) { |
|
|
|
String bjdSid = loanLoadpriceService.selectByOrderSid(orderSid).getSid(); |
|
|
|
AppRePayVo vo = baseMapper.getAppRePayByBjdSid(bjdSid); |
|
|
@ -768,18 +768,18 @@ public class LoanSolutionService extends MybatisBaseService<LoanSolutionMapper, |
|
|
|
return vo; |
|
|
|
} |
|
|
|
|
|
|
|
/** |
|
|
|
*//**
|
|
|
|
* 手机端修改还款情况 |
|
|
|
* @param dto |
|
|
|
* @return |
|
|
|
*/ |
|
|
|
*//*
|
|
|
|
@Transactional |
|
|
|
public ResultBean saveOrUpdateAppRePay(AppRePayDto dto) { |
|
|
|
LoanLoadpriceVo loanLoadpriceVo = loanLoadpriceService.selectByOrderSid(dto.getOrderSid()); |
|
|
|
LoanSolution loanSolution = baseMapper.selectByLoanPriceSid(loanLoadpriceVo.getSid()); |
|
|
|
Map<String, Object> map = new HashMap<>(); |
|
|
|
Map<String, Object> mapSum = new HashMap<>(); |
|
|
|
/*BigDecimal num = busOrderModelFeign.getModelQuantityByOrderSid(dto.getOrderSid()).getData(); |
|
|
|
*//*BigDecimal num = busOrderModelFeign.getModelQuantityByOrderSid(dto.getOrderSid()).getData();
|
|
|
|
map.put("prophase", StringUtils.isBlank(dto.getProphase()) ? null : dto.getProphase()); |
|
|
|
mapSum.put("prophase", StringUtils.isBlank(dto.getProphase()) ? null : dto.getProphase()); |
|
|
|
BigDecimal prophasePayMonkey = StringUtils.toBigDecimal(dto.getProphasePayMoney()); |
|
|
@ -791,7 +791,7 @@ public class LoanSolutionService extends MybatisBaseService<LoanSolutionMapper, |
|
|
|
map.put("modeOfRePayKey", dto.getModeOfRePayKey()); |
|
|
|
mapSum.put("modeOfRePayKey", dto.getModeOfRePayKey()); |
|
|
|
map.put("modeOfRePay", dto.getModeOfRePay()); |
|
|
|
mapSum.put("modeOfRePay", dto.getModeOfRePay());*/ |
|
|
|
mapSum.put("modeOfRePay", dto.getModeOfRePay());*//*
|
|
|
|
map.put("sid", loanSolution.getSid()); |
|
|
|
baseMapper.updateAppRePayByMap(map); |
|
|
|
// 总表
|
|
|
@ -803,5 +803,5 @@ public class LoanSolutionService extends MybatisBaseService<LoanSolutionMapper, |
|
|
|
} else { |
|
|
|
return new ResultBean().fail().setMsg("操作失败"); |
|
|
|
} |
|
|
|
} |
|
|
|
}*/ |
|
|
|
} |