| | |
| | | import com.baomidou.mybatisplus.mapper.BaseMapper; |
| | | import com.zy.asrs.entity.AgvWaitPakin; |
| | | import org.apache.ibatis.annotations.Mapper; |
| | | import org.apache.ibatis.annotations.Param; |
| | | import org.apache.ibatis.annotations.Update; |
| | | import org.springframework.stereotype.Repository; |
| | | |
| | | @Mapper |
| | | @Repository |
| | | public interface AgvWaitPakinMapper extends BaseMapper<AgvWaitPakin> { |
| | | |
| | | @Update("UPDATE agv_cust_wait_pakin SET io_status = '${ioStatus}' WHERE supp_code = '${containerCode}'") |
| | | int updateIoStatus(@Param("containerCode")String containerCode, @Param("ioStatus")String ioStatus); |
| | | |
| | | } |