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