package com.ydtech.modules.order.dao; import com.baomidou.mybatisplus.core.mapper.BaseMapper; import com.ydtech.modules.order.entity.InsAreaCompany; import com.ydtech.modules.order.entity.dto.InsAreaCompanyQueryDto; import org.apache.ibatis.annotations.Param; import java.util.List; /** * @author Administrator * @description 针对表【ins_area_company(报价渠道)】的数据库操作Mapper * @createDate 2023-01-31 15:51:19 * @Entity generator.domain.InsAreaCompany */ public interface InsAreaCompanyMapper extends BaseMapper { /** * 分组查询 * * @param orderNo 订单号 * @return */ List selectByOrderNo(@Param("orderNo") String orderNo); /** * 查询承保的订单 * * @param orderNo * @return */ List selectAcceptInsurance(@Param("orderNo") String orderNo); /** * 查询最新订单的订单号 * * @param orderNo 订单号 * @return */ String queryLatestStatus(@Param("orderNo") String orderNo); List getorDerIds(); }