Junjie
2026-04-13 3441d5d4e8f06a97768ef4aec76f1161a77a52fe
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
package com.zy.asrs.service;
 
import com.baomidou.mybatisplus.core.conditions.query.QueryWrapper;
import com.baomidou.mybatisplus.core.metadata.IPage;
import com.baomidou.mybatisplus.extension.plugins.pagination.Page;
import com.zy.asrs.entity.BasMap;
 
import java.util.List;
 
import com.baomidou.mybatisplus.extension.service.IService;
 
public interface BasMapService extends IService<BasMap> {
 
    BasMap selectLatestMap(Integer lev);//获取最新地图数据
 
    boolean deleteByLev(Integer lev);//删除指定楼层地图
 
    List<Integer> getLevList();//获取所有楼层地图
 
    int syncLocMastByMap(Integer lev);//按地图同步指定楼层locType
 
    IPage<BasMap> pageLight(Page<BasMap> page, QueryWrapper<BasMap> wrapper);//轻量分页查询
 
    BasMap selectPayloadById(Integer id);//按id查询地图大字段
 
}