forked from luyan/epmet-cloud-lingshan
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.
16 lines
346 B
16 lines
346 B
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 {
|
|
}
|
|
|