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