#
luxiaotao1123
2024-10-23 8ead99d42d0a59dd2eb4489a98f171f434988b06
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);
 
}