Junjie
14 小时以前 c97c04770c17c36c554963bf8bb8d8fafc6a8d43
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
27
28
29
30
31
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.Date;
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查询地图大字段
 
    void saveMapPayloadInBatches(Integer lev, String data, String originData, Date updateTime);//分批保存地图大字段
 
    void refreshMapRuntimeCaches(List<Integer> levList);//刷新地图运行缓存
 
}