huminmin
8 天以前 eb66a38fc1f989c3ff91059f8416b1af7ab22b5d
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
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);
}