| | |
| | | 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; |
| | | import java.util.Map; |
| | | |
| | | /** |
| | | * 农场养殖记录表服务类 |
| | |
| | | * @return |
| | | */ |
| | | IPage<FarmPlantVO> selectFarmPlantPage(IPage<FarmPlantVO> page, FarmPlantVO farm); |
| | | IPage<FarmPlantVO> selectFarmPlantPageCount(IPage<Object> page, FarmPlantVO farmPlant); |
| | | IPage<FarmPlantVO> selectFarmPlantPageCountYM(IPage<Object> page, FarmPlantVO farmPlant); |
| | | IPage<FarmPlantVO> getFarmPlantStatisticsCountz(IPage<FarmPlantVO> page, FarmPlantVO farm); |
| | | |
| | | /** |
| | | * 农产品种养统计 |
| | | * @param farmPlantVO 农产品种植对象 |
| | | * @param page 分页查询对象 |
| | | * @return |
| | | */ |
| | | IPage<FarmPlantVO> getFarmPlantStatistics(IPage<FarmPlantVO> page,FarmPlantVO farmPlantVO); |
| | | |
| | | /** |
| | | * 农产品列表 |
| | | * @param farm 农产品对象 |
| | | * @return |
| | | */ |
| | | List<Strain> strainTree(FarmPlantVO farm); |
| | | |
| | | /** |
| | | * 农产品种养统计(累计和) |
| | | * @param farmPlantVO 农产品种植对象 |
| | | * @return |
| | | */ |
| | | FarmPlantVO getFarmPlantStatisticsCount(FarmPlantVO farmPlantVO); |
| | | int selectCount(FarmPlantVO farmPlantVO); |
| | | Map selectPlant(String code,String time); |
| | | Map selectPlantl(String code,String time); |
| | | Map selectPlantw(String code,String time); |
| | | Map selectPlantp(String code,String time); |
| | | Map selectProduct(String code,String time); |
| | | Map selectProducty(String code, String time); |
| | | Map selectProductr(String code, String time); |
| | | Map selectProducts(String code, String time); |
| | | Map selectProductf(String code, String time); |
| | | |
| | | /** |
| | | * 查询种养记录列表(不分页) |
| | | * @param farmPlant |
| | | * @return |
| | | */ |
| | | List<FarmPlantVO> getFarmPlantList(FarmPlantVO farmPlant); |
| | | |
| | | List<FarmPlantVO> getFarmPlantYMList(FarmPlantVO farmPlant); |
| | | } |