| 123456789101112131415161718192021222324252627282930313233 |
- package com.ydtech.modules.order.service;
- import com.ydtech.core.page.HttpResult;
- import com.ydtech.modules.ins.model.ya.CarModelDTO;
- import com.ydtech.modules.order.entity.vo.AccidentalDrivingVo;
- import com.ydtech.modules.order.entity.vo.zm.ZmAscriptionResponse;
- import com.ydtech.modules.order.entity.vo.zm.ZmAscriptionVo;
- import java.util.List;
- public interface ZhongMeiOrderService extends BaseOrderService<AccidentalDrivingVo> {
- HttpResult verifyPayment(String companyId);
- HttpResult getPolicyPrint(String companyId);
- /**
- * 车架号查询
- *
- * @param vin 车架号
- * @return
- */
- List<CarModelDTO> vinSearch(String vin);
- HttpResult submitImage(String companyId);
- ZmAscriptionResponse ascription(ZmAscriptionVo zmAscriptionVo);
- HttpResult manualUnderwriting(String companyId);
- }
|