mirror of
https://gitee.com/elegant_wings/xiongan-meeting.git
synced 2025-06-21 22:09:35 +08:00
34 lines
737 B
Java
34 lines
737 B
Java
package com.ics.admin.mapper;
|
|
|
|
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
|
|
import com.ics.admin.domain.CustomerContacts;
|
|
import org.apache.ibatis.annotations.Mapper;
|
|
|
|
import java.util.List;
|
|
|
|
/**
|
|
* 联系人Mapper接口
|
|
*
|
|
* @author zzm
|
|
* @date 2021-03-29
|
|
*/
|
|
@Mapper
|
|
public interface CustomerContactsMapper extends BaseMapper<CustomerContacts> {
|
|
/**
|
|
* 查询联系人
|
|
*
|
|
* @param id 联系人ID
|
|
* @return 联系人
|
|
*/
|
|
CustomerContacts selectCustomerContactsById(Long id);
|
|
|
|
/**
|
|
* 查询联系人列表
|
|
*
|
|
* @param customerContacts 联系人
|
|
* @return 联系人集合
|
|
*/
|
|
List<CustomerContacts> selectCustomerContactsList(CustomerContacts customerContacts);
|
|
|
|
|
|
} |