liyong
2026-04-23 8c8ff31cdca25f579d3c1f688f46c877bf28aaa1
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
package com.ruoyi.basic.mapper;
 
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
import com.ruoyi.basic.excel.CustomerExcelDTO;
import com.ruoyi.basic.pojo.Customer;
 
import java.util.List;
 
/**
 * 客户档案Mapper接口
 * 
 * @author ruoyi
 * @date 2025-05-07
 */
public interface CustomerMapper extends BaseMapper<Customer>
{
 
    List<CustomerExcelDTO> selectCustomerDtoListByIds(List<Long> ids);
    List<CustomerExcelDTO> selectCustomerDtoLists();
}