package com.ydtech.modules.order.service; import com.baomidou.mybatisplus.extension.service.IService; import com.ydtech.modules.order.entity.po.InsOrderPushMsg; /** * @author Administrator * @description 针对表【ins_order_push_msg(子订单推送数据表)】的数据库操作Service * @createDate 2024-11-05 11:45:52 */ public interface InsOrderPushMsgService extends IService { /** * @version * @author: hxl * @Date: 2024/11/11 8:38 * @Description: 查询历史订单 */ void getPushInsAreaCompanyList(String month); /** * @version * @author: hxl * @Date: 2024/11/11 8:41 * @Description: 推送补偿的订单数据 */ void getPushCompensateInsAreaCompanyList(); /** * @version * @author: hxl * @Date: 2024/11/11 8:41 * @Description: 推送承保的订单数据 */ void getPushSignInsAreaCompanyList(String subOrderNo); /** * @version * @author: hxl * @Date: 2024/11/11 9:14 * @Description: 测试承保数据推送 */ void testSignData(String orderId); }