3 天以前 69dc6b16ef04bdfbfa65f77c169c0847dc7e65c2
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
package com.ruoyi.basic.mapper;
 
import com.baomidou.mybatisplus.core.metadata.IPage;
import com.ruoyi.basic.dto.CustomerPrivatePoolDto;
import com.ruoyi.basic.pojo.CustomerPrivatePool;
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
import org.apache.ibatis.annotations.Mapper;
import org.apache.ibatis.annotations.Param;
 
import java.util.List;
 
/**
 * <p>
 *  Mapper 接口
 * </p>
 *
 * @author 芯导软件(江苏)有限公司
 * @since 2026-04-16 04:43:00
 */
@Mapper
public interface CustomerPrivatePoolMapper extends BaseMapper<CustomerPrivatePool> {
 
    IPage<CustomerPrivatePoolDto> listPage(IPage<CustomerPrivatePoolDto> page, @Param("c") CustomerPrivatePoolDto customerPrivatePoolDto);
 
    CustomerPrivatePoolDto selectInfo(Long id);
 
    List<CustomerPrivatePoolDto> selectInfos();
 
}