package com.ics.admin.mapper; import com.baomidou.mybatisplus.core.mapper.BaseMapper; import com.ics.admin.domain.ClueInvestigation; import org.apache.ibatis.annotations.Mapper; import java.util.List; /** * 线索跟进Mapper接口 * * @author ics * @date 2021-03-23 */ @Mapper public interface ClueInvestigationMapper extends BaseMapper { /** * 查询线索跟进 * * @param id 线索跟进ID * @return 线索跟进 */ ClueInvestigation selectClueInvestigationById(Long id); /** * 查询线索跟进列表 * * @param clueInvestigation 线索跟进 * @return 线索跟进集合 */ List selectClueInvestigationList(ClueInvestigation clueInvestigation); }