| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475 |
- package com.ydtech.modules.order.service;
- import com.ydtech.core.page.HttpResult;
- import com.ydtech.modules.order.entity.crawler.vo.CrawlerPolicyPrintVo;
- import com.ydtech.modules.protocol.entity.dto.PtlAgreementAttributionDto;
- public interface InsCrawlerOrderService extends BaseOrderService<Object> {
- /**
- * 缴费状态查询
- *
- * @param subOrderNo 子订单
- * @return HttpResult
- */
- HttpResult<Object> verifyPayment(String subOrderNo);
- /**
- * 获取电子保单
- *
- * @param subOrderNo 子订单
- * @return HttpResult
- */
- HttpResult<CrawlerPolicyPrintVo> getPolicyPrint(String subOrderNo);
- /**
- * 判断是否登录成功 配置归属
- *
- * @param attribution 配置归属
- * @param insCompanyName 保险公司名称
- */
- void isLogin(PtlAgreementAttributionDto attribution, String companyId, String insCompanyName);
- /**
- * 获取驾意险
- *
- * @param agreementId 协议id
- * @return Object
- */
- HttpResult<Object> getDrivingInsurance(String agreementId);
- /**
- * 核保状态查询
- *
- * @param subOrderNo 子订单
- * @return Object
- */
- HttpResult<Object> auditStatusQuery(String subOrderNo);
- /**
- * @Description 更新承保状态和支付时间
- * @Author xingming
- * @Date 2024/3/28 17:32
- * @Param
- * @Return
- * @Exception
- *
- */
- void verifyPaymentNew(String insAreaCompanyId);
- /**
- * 撤销订单
- */
- void quash(String subOrderNo);
- /**
- * 验车码识别
- * @return 验车码
- */
- String vehicleInspectionCode();
- }
|