| | |
| | | import org.apache.ibatis.annotations.Mapper; |
| | | import org.apache.ibatis.annotations.Param; |
| | | |
| | | import java.util.List; |
| | | |
| | | /** |
| | | * @author ZhuBaoMin |
| | | * @date 2025-03-25 20:41 |
| | | * @LastEditTime 2025-03-25 20:41 |
| | | * @date 2025-04-02 10:54 |
| | | * @LastEditTime 2025-04-02 10:54 |
| | | * @Description |
| | | */ |
| | | |
| | |
| | | * @return |
| | | */ |
| | | int updateByCommandId(@Param("commandId") Long commandId, @Param("commandResult") Byte commandResult, @Param("failureFactors") String failureFactors); |
| | | |
| | | /** |
| | | * 根据计划ID获取待终止的取水口ID(已发布开发命令,无论是否成功) |
| | | * @param planId |
| | | * @return |
| | | */ |
| | | List<Long> getToTerminateIntakeIds(Long planId); |
| | | } |