package zy.cloud.wms.manager.mapper; import org.apache.ibatis.annotations.Param; import zy.cloud.wms.manager.entity.Node; import com.baomidou.mybatisplus.mapper.BaseMapper; import org.apache.ibatis.annotations.Mapper; import org.springframework.stereotype.Repository; @Mapper @Repository public interface NodeMapper extends BaseMapper { Node selectByUuid(@Param("uuid") String uuid, @Param("hostId") Long hostId); }