Helius
2022-05-19 7e6bbd05a75b07cb0717812d0b51aad128361012
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
package cc.mrbird.febs.mall.controller;
 
import cc.mrbird.febs.mall.service.IApiMallActService;
import io.swagger.annotations.Api;
import lombok.RequiredArgsConstructor;
import lombok.extern.slf4j.Slf4j;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RestController;
 
@Slf4j
@RestController
@RequestMapping(value = "/api/act")
@RequiredArgsConstructor
@Api(value = "ApiApplyController", tags = "活动接口类")
public class ApiMallActController {
 
    private final IApiMallActService iApiMallActService;
 
}