package com.doumee.api.web;
|
|
import com.doumee.core.annotation.trace.Trace;
|
import io.swagger.annotations.Api;
|
import lombok.extern.slf4j.Slf4j;
|
import org.springframework.web.bind.annotation.RequestMapping;
|
import org.springframework.web.bind.annotation.RestController;
|
|
/**
|
* Created by IntelliJ IDEA.
|
*
|
* @Author : Rk
|
* @create 2023/10/7 14:43
|
*/
|
|
@Api(tags = "2、首页业务")
|
@Trace(exclude = true)
|
@RestController
|
@RequestMapping("/web/home")
|
@Slf4j
|
public class HomeApi extends ApiController{
|
|
|
|
|
|
|
}
|