新版仿ok交易所-后端
zj
2025-02-08 75018b2f492444248d8b476d9703bb312d2befc3
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
package com.yami.trading.admin.controller.miner;
 
import io.swagger.annotations.Api;
import lombok.extern.slf4j.Slf4j;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RestController;
 
/**
 * @program: trading-order-master
 * @description: 矿机
 * @create: 2025-01-22 17:10
 **/
@RestController
@RequestMapping("miner")
@Api(tags = "矿机")
@Slf4j
public class MinerController {
 
 
 
 
}