mirror of
https://gitee.com/elegant_wings/xiongan-meeting.git
synced 2025-06-22 00:19:37 +08:00
35 lines
772 B
Java
35 lines
772 B
Java
![]() |
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<ClueInvestigation> {
|
||
|
/**
|
||
|
* 查询线索跟进
|
||
|
*
|
||
|
* @param id 线索跟进ID
|
||
|
* @return 线索跟进
|
||
|
*/
|
||
|
ClueInvestigation selectClueInvestigationById(Long id);
|
||
|
|
||
|
/**
|
||
|
* 查询线索跟进列表
|
||
|
*
|
||
|
* @param clueInvestigation 线索跟进
|
||
|
* @return 线索跟进集合
|
||
|
*/
|
||
|
List<ClueInvestigation> selectClueInvestigationList(ClueInvestigation clueInvestigation);
|
||
|
|
||
|
|
||
|
}
|