|
|
@@ -41,52 +41,46 @@ public class HuaTaiOrderApiController {
|
|
|
this.insOrdersComponents = insOrdersComponents;
|
|
|
}
|
|
|
|
|
|
-/* @PostMapping(value = "/modelsQuery")
|
|
|
- @ApiOperation(value = "车型查询接口")
|
|
|
- public HttpResult<List<CarModelDTO>> modelsQuery(@RequestSingleParam(value = "modelName") String modelName) {
|
|
|
- return this.huaTaiOrderApiService.modelsQuery(modelName);
|
|
|
- }*/
|
|
|
-
|
|
|
@QuoteVerification("报价授权")
|
|
|
@PostMapping("/quote")
|
|
|
- @ApiOperation("报价")
|
|
|
+ @ApiOperation("报价")//3.5. 报价接口
|
|
|
public HttpResult<QuoteRespVo> quote(@RequestBody BaseQuoteVo<AccidentalDrivingVo> zmQuoteVo) {
|
|
|
BaseQuoteInfoVo quoteInfo = this.insOrdersComponents.getQuoteInfo(zmQuoteVo.getOrderNo(), zmQuoteVo.getAgreementId());
|
|
|
return this.huaTaiOrderApiService.quote(quoteInfo, zmQuoteVo);
|
|
|
}
|
|
|
|
|
|
@PostMapping(value = "/audit")
|
|
|
- @ApiOperation(value = "提交核保")
|
|
|
+ @ApiOperation(value = "提交核保")//3.6. 转投保接口
|
|
|
public HttpResult<Object> audit(@RequestSingleParam(value = "companyId") String companyId) {
|
|
|
return this.huaTaiOrderApiService.audit(companyId);
|
|
|
}
|
|
|
|
|
|
@PostMapping(value = "/submitImage")
|
|
|
- @ApiOperation(value = "提交影像信息")
|
|
|
+ @ApiOperation(value = "提交影像信息")//赞未做
|
|
|
public HttpResult<Object> submitImage(@RequestSingleParam(value = "companyId") String companyId) {
|
|
|
return this.huaTaiOrderApiService.submitImage(companyId);
|
|
|
}
|
|
|
|
|
|
@PostMapping("/getPolicyPrint")
|
|
|
- @ApiOperation(value = "电子保单")
|
|
|
+ @ApiOperation(value = "电子保单")//3.12. 电子保单下载接口
|
|
|
public HttpResult<List<String>> getPolicyPrint(@RequestBody PolicyPrintVo policyPrintVo) {
|
|
|
return this.huaTaiOrderApiService.getPolicyPrint(policyPrintVo);
|
|
|
}
|
|
|
|
|
|
@PostMapping("/paymentEnquiry")
|
|
|
- @ApiOperation(value = "缴费查询")
|
|
|
+ @ApiOperation(value = "缴费查询")//3.15. 见费出单结果查询接口
|
|
|
public HttpResult<Object> paymentEnquiry(@RequestSingleParam(value = "companyId") String companyId) {
|
|
|
return this.huaTaiOrderApiService.paymentEnquiry(companyId);
|
|
|
}
|
|
|
|
|
|
@PostMapping("/auditStatusQuery")
|
|
|
- @ApiOperation(value = "核保状态查询")
|
|
|
+ @ApiOperation(value = "核保状态查询")//3.7. 提交核保接口
|
|
|
public HttpResult<Object> auditStatusQuery(@RequestSingleParam(value = "companyId") String companyId) {
|
|
|
return this.huaTaiOrderApiService.auditStatusQuery(companyId);
|
|
|
}
|
|
|
|
|
|
@PostMapping("/getPaymentUrl")
|
|
|
- @ApiOperation(value = "支付码获取")
|
|
|
+ @ApiOperation(value = "支付码获取")//3.8. 电子投保单确认及缴费短信发送接口
|
|
|
public HttpResult<Object> getPaymentUrl(@RequestSingleParam(value = "companyId") String companyId) {
|
|
|
return this.huaTaiOrderApiService.getPaymentUrl(companyId);
|
|
|
}
|