Commit c6579a7a authored by liuzicheng's avatar liuzicheng

初始化项目

parent 2e12d1ed
...@@ -70,7 +70,7 @@ public class CreditSubmitCommand extends AbstractCommand { ...@@ -70,7 +70,7 @@ public class CreditSubmitCommand extends AbstractCommand {
this.convert(request,insert); this.convert(request,insert);
ClientInfoModel infoModel = this.convertCredit(request,insert); ClientInfoModel infoModel = this.convertCredit(request,insert);
JsonResult result = iWakandaFeignService.clientCredit(infoModel); JsonResult result = iWakandaFeignService.clientCredit(infoModel);
result.resultCheck(); result.apiCheck();
creditComponent.insert(insert); creditComponent.insert(insert);
return JsonResult.success(); return JsonResult.success();
} }
...@@ -87,6 +87,7 @@ public class CreditSubmitCommand extends AbstractCommand { ...@@ -87,6 +87,7 @@ public class CreditSubmitCommand extends AbstractCommand {
clientInfoModel.setOrderNo(request.getOrderNo()); clientInfoModel.setOrderNo(request.getOrderNo());
clientInfoModel.setMobileEncrypt(LoanMobileAESUtil.encrypt(model.getClientCell())); clientInfoModel.setMobileEncrypt(LoanMobileAESUtil.encrypt(model.getClientCell()));
clientInfoModel.setProductName("ZN_DAI"); clientInfoModel.setProductName("ZN_DAI");
clientInfoModel.setChannelSign("ZN");
clientInfoModel.setCreditPath(model.getCreditDetailUrl()); clientInfoModel.setCreditPath(model.getCreditDetailUrl());
clientInfoModel.setBizType(ProductNameEnum.getByCode(clientInfoModel.getProductName()).getBiz()); clientInfoModel.setBizType(ProductNameEnum.getByCode(clientInfoModel.getProductName()).getBiz());
return clientInfoModel; return clientInfoModel;
...@@ -156,7 +157,4 @@ public class CreditSubmitCommand extends AbstractCommand { ...@@ -156,7 +157,4 @@ public class CreditSubmitCommand extends AbstractCommand {
model.setClientName(basicModel.getName()); model.setClientName(basicModel.getName());
return model; return model;
} }
public static void main(String[] args) {
}
} }
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment