whyclxw
2025-03-24 6fb2c7199bf50c524cdf0b8d3ec8b2644eb116d8
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);
}