You've already forked FrameTour-BE
16 lines
392 B
Java
16 lines
392 B
Java
package com.ycwl.basic.controller.mobile;
|
|
|
|
import io.swagger.annotations.Api;
|
|
import org.springframework.web.bind.annotation.RequestMapping;
|
|
import org.springframework.web.bind.annotation.RestController;
|
|
|
|
/**
|
|
* @Author:longbinbin
|
|
* @Date:2024/12/6 10:18
|
|
*/
|
|
@RestController
|
|
@RequestMapping("/api/mobile/scenic/v1")
|
|
@Api(tags = "设备相关接口")
|
|
public class AppDeviceController {
|
|
}
|