package com.doumee.api.web;
|
|
import com.doumee.biz.zbom.ZbomZhongTaiService;
|
import com.doumee.core.annotation.trace.Trace;
|
import com.doumee.service.business.SmsEmailService;
|
import io.swagger.annotations.Api;
|
import lombok.extern.slf4j.Slf4j;
|
import org.springframework.beans.factory.annotation.Autowired;
|
import org.springframework.web.bind.annotation.RequestMapping;
|
import org.springframework.web.bind.annotation.RestController;
|
|
/**
|
* Created by IntelliJ IDEA.
|
*
|
* @Author : Rk
|
* @create 2024/7/10 18:06
|
*/
|
@Api(tags = "分类和标签相关接口")
|
@Trace(exclude = true)
|
@RestController
|
@RequestMapping("/web/catalog")
|
@Slf4j
|
public class CatalogApi extends ApiController{
|
|
@Autowired
|
public ZbomZhongTaiService zbomZhongTaiService;
|
|
@Autowired
|
public SmsEmailService smsEmailService;
|
|
}
|