package org.example.pojo; import lombok.Data; /** * @program: demo * @description: * @create: 2024-07-23 10:02 **/ @Data public class MarketDataOut { //币种 private String baseAsset; //买入平台 private String buyingPlatform; //卖出平台 private String sellPlatform; //价差 private String spread; //买入价格 private String buyPrice; //卖出价格 private String sellPrice; //买入数量 private String buyNumber; //卖出数量 private String sellNumber; //买入总价 private String buyTotalPrice; //卖出总价 private String sellTotalPrice; //服务器时间 private String servceTime; }