1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
| package com.stylefeng.guns.modular.system.service;
|
| import com.stylefeng.guns.modular.system.model.TLocation;
| import com.baomidou.mybatisplus.service.IService;
|
| /**
| * <p>
| * 地点 服务类
| * </p>
| *
| * @author 吕雪
| * @since 2020-09-04
| */
| public interface ITLocationService extends IService<TLocation> {
|
|
| /**
| * 定时任务更新线上围栏的有效时间
| * @throws Exception
| */
| void updateFence() throws Exception;
| }
|
|