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);
|
}
|