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;
|
}
|