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