xiaoyong931011
2021-05-10 6841655f98a81fe9dbe5229a3011088ac2fbf81e
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
package com.xcong.excoin.modules.yunding.controller;
 
import com.xcong.excoin.modules.activity.service.ActivityService;
import com.xcong.excoin.modules.yunding.service.YunDingService;
import io.swagger.annotations.Api;
import lombok.extern.slf4j.Slf4j;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RestController;
 
import javax.annotation.Resource;
 
@RestController
@RequestMapping(value = "api/yd")
@Slf4j
@Api(value = "YunDingController", tags = "云顶算力")
public class YunDingController {
 
    @Resource
    YunDingService yunDingService;
 
 
}