chenhj
2026-04-16 145f6c5c7a7a04eff490ae8436c0024850b78bc5
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();
}