18 lines
450 B
Java
18 lines
450 B
Java
package com.onekeycall.videotablet.controller;
|
|
|
|
import com.onekeycall.videotablet.service.DeviceSnService;
|
|
import com.onekeycall.videotablet.utils.JwtUtil;
|
|
import org.springframework.beans.factory.annotation.Autowired;
|
|
import org.springframework.web.bind.annotation.*;
|
|
|
|
@RestController
|
|
@RequestMapping("/sn")
|
|
public class DevicesController {
|
|
@Autowired
|
|
private JwtUtil jwtUtil;
|
|
@Autowired
|
|
private DeviceSnService deviceSnService;
|
|
|
|
|
|
}
|