package com.ruoyi.tms.service;
|
|
import java.util.List;
|
import com.ruoyi.tms.domain.TmsCustomerInfo;
|
import com.baomidou.mybatisplus.extension.service.IService;
|
/**
|
* 客户信息Service接口
|
*
|
* @author ruoyi
|
* @date 2025-11-02
|
*/
|
public interface ITmsCustomerInfoService extends IService<TmsCustomerInfo>
|
{
|
/**
|
* 查询客户信息
|
*
|
* @param id 客户信息ID
|
* @return 客户信息
|
*/
|
public TmsCustomerInfo selectTmsCustomerInfoById(Integer id);
|
|
/**
|
* 查询客户信息 记录数
|
*
|
* @param tmsCustomerInfo 客户信息
|
* @return 客户信息集合
|
*/
|
public int selectTmsCustomerInfoCount(TmsCustomerInfo tmsCustomerInfo);
|
|
/**
|
* 查询客户信息列表
|
*
|
* @param tmsCustomerInfo 客户信息
|
* @return 客户信息集合
|
*/
|
public List<TmsCustomerInfo> selectTmsCustomerInfoList(TmsCustomerInfo tmsCustomerInfo);
|
|
/**
|
* 查询客户信息列表 异步 导出
|
*
|
* @param tmsCustomerInfo 客户信息
|
* @param exportKey 导出功能的唯一标识
|
* @return 客户信息集合
|
*/
|
public void export(TmsCustomerInfo tmsCustomerInfo, String exportKey) ;
|
|
|
/**
|
* 新增客户信息
|
*
|
* @param tmsCustomerInfo 客户信息
|
* @return 结果
|
*/
|
public int insertTmsCustomerInfo(TmsCustomerInfo tmsCustomerInfo);
|
|
/**
|
* 新增客户信息[批量]
|
*
|
* @param tmsCustomerInfos 客户信息
|
* @return 结果
|
*/
|
public int insertTmsCustomerInfoBatch(List<TmsCustomerInfo> tmsCustomerInfos);
|
|
/**
|
* 修改客户信息
|
*
|
* @param tmsCustomerInfo 客户信息
|
* @return 结果
|
*/
|
public int updateTmsCustomerInfo(TmsCustomerInfo tmsCustomerInfo);
|
|
/**
|
* 修改客户信息[批量]
|
*
|
* @param tmsCustomerInfos 客户信息
|
* @return 结果
|
*/
|
public int updateTmsCustomerInfoBatch(List<TmsCustomerInfo> tmsCustomerInfos);
|
/**
|
* 批量删除客户信息
|
*
|
* @param ids 需要删除的数据ID
|
* @return 结果
|
*/
|
public int deleteTmsCustomerInfoByIds(String ids);
|
|
/**
|
* 批量删除客户信息
|
*
|
* @param ids 需要删除的数据ID
|
* @return 结果
|
*/
|
public int deleteTmsCustomerInfoByIds(Integer[] ids);
|
|
/**
|
* 删除客户信息信息
|
*
|
* @param id 客户信息ID
|
* @return 结果
|
*/
|
public int deleteTmsCustomerInfoById(Integer id);
|
}
|