xiaoyong931011
2022-05-18 1703d0819d3cab4619709c097224d8d74de0ef4a
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;
 
}