新版仿ok交易所-后端
1
zj
2025-09-30 d4be4cc69f18b01cc39bd3f9dc9497a828848ca8
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
package com.yami.trading.huobi.data.model;
 
import com.fasterxml.jackson.annotation.JsonProperty;
import lombok.Data;
 
/**
 * @program: trading-order-master
 * @description:
 * @create: 2025-09-28 14:16
 **/
@Data
public class ETFData {
    @JsonProperty("ticker")
    private String ticker;
 
    @JsonProperty("name")
    private String name;
 
    @JsonProperty("is_active")
    private Integer isActive;
 
    @JsonProperty("exchange_code")
    private String exchangeCode;
 
    @JsonProperty("country_code")
    private String countryCode;
 
    @JsonProperty("currency_code")
    private String currencyCode;
}