#
luxiaotao1123
2024-11-22 3789ef8188e8f4a3317b4f342fb9ae4169536f0a
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);
 
}