1
2
3
4
5
6
7
8
9
10
11
12
13
14
| package com.ruoyi.test.Geo;
|
| import com.ruoyi.common.core.domain.entity.SysUser;
|
| /**
| * @Description: 电子围栏回调
| * @ClassName: GeofenceCallback
| * @Author: 刘苏义
| * @Date: 2023年08月30日9:53:14
| **/
| public interface GeofenceCallback {
| void onEnter(String id,SysUser user);
| void onExit(String id,SysUser user);
| }
|
|