| | |
| | | package com.dy.pipIrrGlobal.daoLargeScreen; |
| | | |
| | | import com.baomidou.mybatisplus.core.mapper.BaseMapper; |
| | | import com.dy.pipIrrGlobal.pojoMd.MdEt0; |
| | | import com.dy.pipIrrGlobal.voMd.VoCrops; |
| | | import com.dy.pipIrrGlobal.voSpecial.VoTopXClient; |
| | | import com.dy.pipIrrGlobal.voSpecial.VoTopXIntake; |
| | | import com.dy.pipIrrGlobal.voMd.VoCropsSimple; |
| | | import com.dy.pipIrrGlobal.voMd.VoEt0Simple; |
| | | import org.apache.ibatis.annotations.Mapper; |
| | | import org.apache.ibatis.annotations.Param; |
| | | |
| | |
| | | * 所有作物 |
| | | * @return 实体集合 |
| | | */ |
| | | List<VoCrops> allCropts() ; |
| | | List<VoCropsSimple> allCropts() ; |
| | | |
| | | |
| | | /** |
| | | * 所有作物 |
| | | * @return 实体集合 |
| | | */ |
| | | List<MdEt0> et0InWeek(@Param("cropId") Long cropId, @Param("startDate")String startDate, @Param("endDate")String endDate) ; |
| | | List<VoEt0Simple> et0InWeek(@Param("cropId") Long cropId, @Param("startDate")String startDate, @Param("endDate")String endDate) ; |
| | | |
| | | |
| | | |