package com.mzl.flower.mapper.supplier; import com.baomidou.mybatisplus.core.mapper.BaseMapper; import com.baomidou.mybatisplus.extension.plugins.pagination.Page; import com.mzl.flower.dto.response.supplier.StationDTO; import com.mzl.flower.entity.supplier.Station; import org.apache.ibatis.annotations.Param; import org.springframework.stereotype.Repository; import java.util.List; @Repository public interface StationMapper extends BaseMapper { List queryPage(Page page, @Param("name") String name); List queryList(@Param("name") String name); }