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;
|
|
|
|
}
|