#
luxiaotao1123
2025-01-04 9fb7c7678174c0fea9bf7c96dca8c24b165d0a48
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
package com.zy.acs.manager.manager.mapper;
 
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
import com.zy.acs.manager.manager.entity.NavMap;
import org.apache.ibatis.annotations.Mapper;
import org.apache.ibatis.annotations.Param;
import org.springframework.stereotype.Repository;
 
@Mapper
@Repository
public interface NavMapMapper extends BaseMapper<NavMap> {
 
    NavMap selectActive(@Param("zoneId") Long zoneId, @Param("floor") Integer floor);
 
}