yangys
2024-02-02 b82c71a3e3a97a78bd18ff598d27f3062600d22a
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
package com.qianwen.mdc.mapper;
 
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
import com.baomidou.mybatisplus.extension.plugins.pagination.Page;
import com.qianwen.mdc.domain.plant.Plant;
import com.qianwen.mdc.dto.plant.PlantDTO;
import com.qianwen.mdc.dto.plant.PlantQueryDTO;
 
public interface PlantMapper extends BaseMapper<Plant> {
 
    /**
     * 分页查询
     * @param rowPage
     * @param dto
     * @return
     */
    Page<PlantDTO> queryPage(Page<PlantDTO> rowPage, PlantQueryDTO dto);
    
}