yudao-module-crm-api/src/main/java/cn/iocoder/yudao/module/crm/api/customer/CrmCustomerApi.java
@@ -11,7 +11,7 @@
 *
 * 提供给其它模块(如 ERP)调用
 *
 * @author 芋道源码
 * @author 超级管理员
 */
public interface CrmCustomerApi {
@@ -56,4 +56,13 @@
     */
    List<Long> getPermittedCustomerIds();
    /**
     * 获得客户简单列表(编号 + 名称)
     *
     * 用于其它模块(如 ERP 销售订单导入)按客户名称匹配客户编号
     *
     * @return 客户简单列表
     */
    List<CrmCustomerRespDTO> getCustomerSimpleList();
}