| | |
| | | |
| | | import com.baomidou.mybatisplus.core.mapper.BaseMapper; |
| | | import com.dy.pipIrrGlobal.pojoIr.IrIrrigatePlan; |
| | | import com.dy.pipIrrGlobal.voIr.VoPlanDetails; |
| | | import com.dy.pipIrrGlobal.voIr.VoPlanSimple; |
| | | import com.dy.pipIrrGlobal.voIr.VoPlans; |
| | | import org.apache.ibatis.annotations.Mapper; |
| | |
| | | * @return |
| | | */ |
| | | Date getToTerminatePlan(@Param("planId") Long planId); |
| | | |
| | | /** |
| | | * 根据计划ID获取计划详情,包括计划名称,项目名,计划开始时间,计划结束时间,计划详情页使用 |
| | | * @param planId |
| | | * @return |
| | | */ |
| | | VoPlanDetails getPlanDetails(@Param("planId") Long planId); |
| | | |
| | | /** |
| | | * 根据计划ID获取计划状态,用于判断是否可以删除计划 |
| | | * @param planId |
| | | * @return |
| | | */ |
| | | Integer getPlanState(@Param("planId") Long planId); |
| | | } |