package com.ruoyi.basic.service;
|
|
import com.baomidou.mybatisplus.core.metadata.IPage;
|
import com.baomidou.mybatisplus.extension.plugins.pagination.Page;
|
import com.ruoyi.basic.dto.CustomerPrivatePoolDto;
|
import com.ruoyi.basic.pojo.Customer;
|
import com.ruoyi.basic.pojo.CustomerPrivatePool;
|
import com.baomidou.mybatisplus.extension.service.IService;
|
|
import java.util.List;
|
|
/**
|
* <p>
|
* 服务类
|
* </p>
|
*
|
* @author 芯导软件(江苏)有限公司
|
* @since 2026-04-16 04:43:00
|
*/
|
public interface CustomerPrivatePoolService extends IService<CustomerPrivatePool> {
|
|
IPage<CustomerPrivatePoolDto> listPage(Page<CustomerPrivatePoolDto> page, CustomerPrivatePoolDto customerPrivatePoolDto);
|
|
boolean deleteCustomerPrivatePool(Long id);
|
|
boolean together(CustomerPrivatePoolDto customerPrivatePool);
|
|
boolean add(CustomerPrivatePoolDto customerPrivatePool);
|
|
CustomerPrivatePoolDto getInfo(Long id);
|
|
Boolean updateCustomerPrivatePoolDto(CustomerPrivatePoolDto customerPrivatePoolDto);
|
|
CustomerPrivatePoolDto getbyId(Long id);
|
|
List<CustomerPrivatePoolDto> selectCustomerPrivatePoolDtoListByIds(List<Long> ids);
|
|
List<CustomerPrivatePoolDto> selectCustomerPrivatePoolDtoLists(CustomerPrivatePoolDto customerPrivatePoolDto);
|
}
|