InsOrderPushMsgService.java 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. package com.ydtech.modules.order.service;
  2. import com.baomidou.mybatisplus.extension.service.IService;
  3. import com.ydtech.modules.order.entity.po.InsOrderPushMsg;
  4. /**
  5. * @author Administrator
  6. * @description 针对表【ins_order_push_msg(子订单推送数据表)】的数据库操作Service
  7. * @createDate 2024-11-05 11:45:52
  8. */
  9. public interface InsOrderPushMsgService extends IService<InsOrderPushMsg> {
  10. /**
  11. * @version
  12. * @author: hxl
  13. * @Date: 2024/11/11 8:38
  14. * @Description: 查询历史订单
  15. */
  16. void getPushInsAreaCompanyList(String month);
  17. /**
  18. * @version
  19. * @author: hxl
  20. * @Date: 2024/11/11 8:41
  21. * @Description: 推送补偿的订单数据
  22. */
  23. void getPushCompensateInsAreaCompanyList();
  24. /**
  25. * @version
  26. * @author: hxl
  27. * @Date: 2024/11/11 8:41
  28. * @Description: 推送承保的订单数据
  29. */
  30. void getPushSignInsAreaCompanyList(String subOrderNo);
  31. /**
  32. * @version
  33. * @author: hxl
  34. * @Date: 2024/11/11 9:14
  35. * @Description: 测试承保数据推送
  36. */
  37. void testSignData(String orderId);
  38. }