package com.zy.acs.manager.manager.mapper; import com.baomidou.mybatisplus.core.mapper.BaseMapper; import com.zy.acs.manager.manager.entity.AgvDetail; import org.apache.ibatis.annotations.Param; public interface AgvDetailMapper extends BaseMapper { AgvDetail selectMajorByAgvId(@Param("agvId") Long agvId); int updatePosCode(@Param("id") Long id, @Param("codeId") Long codeId); int updateUnPosCode(@Param("id") Long id, @Param("lastCode") Long lastCode); int updatePosCodeByAgvId(@Param("agvId") Long agvId, @Param("codeId") Long codeId); Boolean updateAngleByAgvId(@Param("agvId") Long agvId, @Param("angle") Double angle); }