智慧农业后台管理
Administrator
2022-05-13 f04ad887cf76500355e8adba008dba2d86abea70
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
 
package org.springblade.modules.farmplant.service;
 
import com.baomidou.mybatisplus.core.metadata.IPage;
import com.baomidou.mybatisplus.extension.service.IService;
import org.springblade.modules.farmplant.entity.FarmPlant;
import org.springblade.modules.farmplant.vo.FarmPlantVO;
 
/**
 * 农场养殖记录表服务类
 * @since 2022-05-12
 * @author zhongrj
 */
public interface FarmPlantService extends IService<FarmPlant> {
 
    /**
     * 自定义分页
     *
     * @param page
     * @param farm
     * @return
     */
    IPage<FarmPlantVO> selectFarmPlantPage(IPage<FarmPlantVO> page, FarmPlantVO farm);
}