|  |  | 
 |  |  | import com.baomidou.mybatisplus.core.mapper.BaseMapper; | 
 |  |  | import com.dy.pipIrrGlobal.pojoIr.IrIrrigatePlan; | 
 |  |  | import com.dy.pipIrrGlobal.voIr.VoPlanSimple; | 
 |  |  | import com.dy.pipIrrGlobal.voIr.VoPlans; | 
 |  |  | import org.apache.ibatis.annotations.Mapper; | 
 |  |  | import org.apache.ibatis.annotations.Param; | 
 |  |  |  | 
 |  |  | import java.util.Date; | 
 |  |  | import java.util.List; | 
 |  |  |  | 
 |  |  | /** | 
 |  |  |  * @author ZhuBaoMin | 
 |  |  | 
 |  |  |      * @return | 
 |  |  |      */ | 
 |  |  |     Integer updatePlanTimes(@Param("planStartTime") Date planStartTime, @Param("planStopTime") Date planEndTime, @Param("planId")  Long planId); | 
 |  |  |  | 
 |  |  |     /** | 
 |  |  |      * 获取未完成的计划列表,小程序计划列表页使用 | 
 |  |  |      * @return | 
 |  |  |      */ | 
 |  |  |     List<VoPlans> getNotCompletePlans(); | 
 |  |  |  | 
 |  |  |     /** | 
 |  |  |      * 获取已完成的计划列表,小程序计划列表页使用 | 
 |  |  |      * @return | 
 |  |  |      */ | 
 |  |  |     List<VoPlans> getCompletedPlans(); | 
 |  |  | } |