1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
| package org.example.pojo.bo;
|
| import lombok.Data;
|
| /**
| * @program: demo
| * @description: gate交易对
| * @create: 2024-07-17 11:50
| **/
| @Data
| public class CurrencyGateBo {
| //交易对名字
| private String id;
| //币名字
| private String base;
| //交易币
| private String quote;
| //来源
| private String source = "gate";
| }
|
|