1
2
3
4
5
6
7
8
9
10
11
12
| package com.whyc.mapper;
|
| import com.whyc.pojo.db_area.LockBl;
|
| import java.util.List;
|
| public interface LockBlMapper extends CustomMapper<LockBl>{
|
|
| //查询锁的蓝牙开启时间段记录
| List<LockBl> getLockBl(String lockName, Integer type, List<Integer> areaList);
| }
|
|