17 lines
356 B
Java
17 lines
356 B
Java
|
|
package com.xinelu.mobile.controller;
|
||
|
|
|
||
|
|
import org.springframework.web.bind.annotation.RequestMapping;
|
||
|
|
import org.springframework.web.bind.annotation.RestController;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @Description 测试controller
|
||
|
|
* @Author 纪寒
|
||
|
|
* @Date 2024-02-18 16:39:49
|
||
|
|
* @Version 1.0
|
||
|
|
*/
|
||
|
|
@RestController
|
||
|
|
@RequestMapping("/testMobile")
|
||
|
|
public class MobileTestController {
|
||
|
|
|
||
|
|
}
|