You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
346 B
17 lines
346 B
3 years ago
|
package com.epmet.controller;
|
||
|
|
||
|
import lombok.extern.slf4j.Slf4j;
|
||
|
import org.springframework.web.bind.annotation.RequestMapping;
|
||
|
import org.springframework.web.bind.annotation.RestController;
|
||
|
|
||
|
/**
|
||
|
* @Description
|
||
|
* @Author zhaoqifeng
|
||
|
* @Date 2022/5/31 16:20
|
||
|
*/
|
||
|
@Slf4j
|
||
|
@RestController
|
||
|
@RequestMapping("myHome")
|
||
|
public class MyHomeController {
|
||
|
}
|