陶杰
2025-01-08 ae1471f378f399f76518539ec8992e64a3673436
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
package com.mzl.flower.mapper.configParam;
 
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
import com.baomidou.mybatisplus.extension.plugins.pagination.Page;
import com.mzl.flower.dto.request.configParam.ConfigCustomerServiceQueryDTO;
import com.mzl.flower.dto.response.configParam.ConfigCustomerServiceVO;
import com.mzl.flower.entity.configParam.ConfigCustomerService;
import org.apache.ibatis.annotations.Param;
import org.springframework.stereotype.Repository;
 
import java.util.List;
 
 
/**
 * @author fanghaowei
 * @version version2.0
 * @className ConfigCustomerServiceMapper
 * @date 2024/8/26
 * @description ConfigCustomerServiceMapper
 */
@SuppressWarnings("ALL")
@Repository
public interface ConfigCustomerServiceMapper extends BaseMapper<ConfigCustomerService> {
 
    List<ConfigCustomerServiceVO> queryPage(@Param("dto") ConfigCustomerServiceQueryDTO configCustomerServiceQueryDTO, Page page);
}