3 changed files with 43 additions and 0 deletions
@ -0,0 +1,16 @@ |
|||||
|
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 { |
||||
|
} |
@ -0,0 +1,12 @@ |
|||||
|
package com.epmet.service; |
||||
|
|
||||
|
import lombok.extern.slf4j.Slf4j; |
||||
|
import org.springframework.stereotype.Service; |
||||
|
|
||||
|
/** |
||||
|
* @Description |
||||
|
* @Author zhaoqifeng |
||||
|
* @Date 2022/5/31 16:21 |
||||
|
*/ |
||||
|
public interface MyHomeService { |
||||
|
} |
@ -0,0 +1,15 @@ |
|||||
|
package com.epmet.service.impl; |
||||
|
|
||||
|
import com.epmet.service.MyHomeService; |
||||
|
import lombok.extern.slf4j.Slf4j; |
||||
|
import org.springframework.stereotype.Service; |
||||
|
|
||||
|
/** |
||||
|
* @Description |
||||
|
* @Author zhaoqifeng |
||||
|
* @Date 2022/5/31 16:22 |
||||
|
*/ |
||||
|
@Service |
||||
|
@Slf4j |
||||
|
public class MyHomeServiceImpl implements MyHomeService { |
||||
|
} |
Loading…
Reference in new issue