| | |
| | | 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.entity.Strain; |
| | | import org.springblade.modules.farmplant.vo.FarmPlantVO; |
| | | import org.springblade.modules.farmplant.vo.StrainVO; |
| | | |
| | | import java.util.List; |
| | | |
| | | /** |
| | | * 农场养殖记录表服务类 |
| | |
| | | * @return |
| | | */ |
| | | IPage<FarmPlantVO> getFarmPlantStatistics(IPage<FarmPlantVO> page,FarmPlantVO farmPlantVO); |
| | | |
| | | /** |
| | | * 农产品列表 |
| | | * @param farm 农产品对象 |
| | | * @return |
| | | */ |
| | | List<Strain> strainTree(FarmPlantVO farm); |
| | | } |