1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
| package com.ruoyi.system.service;
|
| import com.ruoyi.system.domain.GpsLoginRequest;
| import com.ruoyi.system.domain.GpsLoginResponse;
|
| /**
| * GPS采集服务接口
| */
| public interface IGpsCollectService {
| /**
| * GPS登录
| * @param request 登录请求
| * @return 登录响应
| */
| GpsLoginResponse login(GpsLoginRequest request);
| }
|
|