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