InsHengbangService.java 1.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. //package com.ydtech.modules.ins.service;
  2. //
  3. //import com.fasterxml.jackson.core.JsonProcessingException;
  4. //import com.ydtech.core.page.HttpResult;
  5. //import com.ydtech.modules.ins.model.hb.HengbangPolicyPrintResponse;
  6. //import com.ydtech.modules.ins.model.ya.YaQuoteInfoVo;
  7. //
  8. //import java.io.IOException;
  9. //
  10. //public interface InsHengbangService {
  11. //
  12. // /**
  13. // * 报价
  14. // *
  15. // * @param yaQuoteInfoVo
  16. // * @return
  17. // */
  18. // HttpResult quote(YaQuoteInfoVo yaQuoteInfoVo) throws JsonProcessingException;
  19. //
  20. // /**
  21. // * 核保
  22. // *
  23. // * @param orderNo
  24. // * @return
  25. // * @throws IOException
  26. // */
  27. // HttpResult audit(String orderNo) throws IOException;
  28. //
  29. // /**
  30. // * 上传影像
  31. // *
  32. // * @param orderId
  33. // * @return
  34. // * @throws IOException
  35. // */
  36. // HttpResult submitImage(String orderId) throws IOException;
  37. //
  38. // /**
  39. // * 获取报价订单
  40. // *
  41. // * @param orderNo
  42. // * @return
  43. // */
  44. // HengbangPolicyPrintResponse getPolicyPrint(String orderNo);
  45. //}