3 changed files with 35 additions and 0 deletions
@ -0,0 +1,13 @@ |
|||
package com.epmet.modules.badege.controller; |
|||
|
|||
import org.springframework.web.bind.annotation.RequestMapping; |
|||
import org.springframework.web.bind.annotation.RestController; |
|||
|
|||
/** |
|||
* @Author zxc |
|||
* @DateTime 2020/11/3 10:42 上午 |
|||
*/ |
|||
@RestController |
|||
@RequestMapping("badge") |
|||
public class BadgeController { |
|||
} |
@ -0,0 +1,8 @@ |
|||
package com.epmet.modules.badege.service; |
|||
|
|||
/** |
|||
* @Author zxc |
|||
* @DateTime 2020/11/3 10:52 上午 |
|||
*/ |
|||
public interface BadgeService { |
|||
} |
@ -0,0 +1,14 @@ |
|||
package com.epmet.modules.badege.service.impl; |
|||
|
|||
import com.epmet.modules.badege.service.BadgeService; |
|||
import lombok.extern.slf4j.Slf4j; |
|||
import org.springframework.stereotype.Service; |
|||
|
|||
/** |
|||
* @Author zxc |
|||
* @DateTime 2020/11/3 10:53 上午 |
|||
*/ |
|||
@Service |
|||
@Slf4j |
|||
public class BadgeServiceImpl implements BadgeService { |
|||
} |
Loading…
Reference in new issue