package com.dy.pipIrrGlobal.daoIr;
|
|
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
|
import com.dy.pipIrrGlobal.pojoIr.IrIntakeOperate;
|
import org.apache.ibatis.annotations.Mapper;
|
import org.apache.ibatis.annotations.Param;
|
|
/**
|
* @author ZhuBaoMin
|
* @date 2025-04-02 10:54
|
* @LastEditTime 2025-04-02 10:54
|
* @Description
|
*/
|
|
@Mapper
|
public interface IrIntakeOperateMapper extends BaseMapper<IrIntakeOperate> {
|
int deleteByPrimaryKey(Long id);
|
|
int insert(IrIntakeOperate record);
|
|
int insertSelective(IrIntakeOperate record);
|
|
IrIntakeOperate selectByPrimaryKey(Long id);
|
|
int updateByPrimaryKeySelective(IrIntakeOperate record);
|
|
int updateByPrimaryKey(IrIntakeOperate record);
|
|
/**
|
* 根据命令ID更新取水口操作记录
|
* @param commandId
|
* @param commandResult
|
* @return
|
*/
|
int updateByCommandId(@Param("commandId") Long commandId, @Param("commandResult") Byte commandResult, @Param("failureFactors") String failureFactors);
|
}
|