package com.panzhihua.sangeshenbian.controller;
|
|
import com.panzhihua.sangeshenbian.service.impl.StaticsService;
|
import io.swagger.annotations.Api;
|
import lombok.RequiredArgsConstructor;
|
import org.springframework.context.annotation.Lazy;
|
import org.springframework.web.bind.annotation.RequestMapping;
|
import org.springframework.web.bind.annotation.RestController;
|
|
/**
|
* @author mitao
|
* @date 2025/5/9
|
*/
|
@Api(tags = {"【2.0.1】统计分析相关接口"})
|
@RestController
|
@RequestMapping("/applet/statics")
|
@RequiredArgsConstructor(onConstructor_ = {@Lazy})
|
public class StaticsController {
|
private final StaticsService staticsService;
|
|
}
|