| | |
| | | package com.mzl.flower.mapper.configParam; |
| | | |
| | | import com.baomidou.mybatisplus.extension.plugins.pagination.Page; |
| | | import com.mzl.flower.dto.request.configParam.QueryConfigParamGroupDTO; |
| | | import com.mzl.flower.dto.response.configParam.ConfigParamGroupVO; |
| | | import com.mzl.flower.entity.configParam.ConfigParamGroupDO; |
| | | import com.baomidou.mybatisplus.core.mapper.BaseMapper; |
| | | |
| | | import java.util.List; |
| | | |
| | | /** |
| | | * <p> |
| | |
| | | */ |
| | | public interface ConfigParamGroupMapper extends BaseMapper<ConfigParamGroupDO> { |
| | | |
| | | List<ConfigParamGroupVO> queryPage(QueryConfigParamGroupDTO dto, Page page); |
| | | } |
| | | |