admin
2021-11-22 ec21251764082bebde0f68966332751c288d786c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
package com.yeshi.location.app.controller.client.api;
 
import com.yeshi.location.app.service.inter.sos.EmergencyContactsService;
import com.yeshi.location.app.service.inter.sos.SOSRecordService;
import com.yeshi.location.app.service.inter.sos.SOSTargetInfoService;
import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.RequestMapping;
 
import javax.annotation.Resource;
 
/**
 * @author hxh
 * @title: UserController
 * @description: 用户接口
 * @date 2021/11/16 17:37
 */
@Controller
@RequestMapping("api/v1/location")
public class SOSController {
 
    @Resource
    private SOSRecordService sosRecordService;
    @Resource
    private EmergencyContactsService emergencyContactsService;
    @Resource
    private SOSTargetInfoService sosTargetInfoService;
 
 
 
}